/*
Theme Name: WebyStrata Hosting FAQs
Theme URI: https://www.webystrata.com/hosting-faqs/
Author: WebyStrata
Author URI: https://www.webystrata.com/
Description: A WebyStrata-branded editable knowledge base theme for hosting FAQs, support articles, and technical guides.
Version: 1.1.6
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: webystrata-hosting-faqs
*/

:root {
  --wsfaq-primary: #0b5cff;
  --wsfaq-primary-2: #168bff;
  --wsfaq-navy: #071735;
  --wsfaq-deep: #061126;
  --wsfaq-cyan: #12c2e9;
  --wsfaq-green: #16a34a;
  --wsfaq-bg: #f5f8fc;
  --wsfaq-soft: #eef5ff;
  --wsfaq-card: #ffffff;
  --wsfaq-border: #dce7f5;
  --wsfaq-text: #0b1b3d;
  --wsfaq-muted: #5f718c;
  --wsfaq-shadow: 0 20px 60px rgba(7, 23, 53, 0.10);
  --wsfaq-radius: 8px;
  --wsfaq-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wsfaq-bg);
  color: var(--wsfaq-text);
  font-family: "DM Sans", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.admin-bar .wsfaq-site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.wsfaq-container {
  width: min(var(--wsfaq-container), calc(100% - 48px));
  margin: 0 auto;
}

.wsfaq-top-strip {
  background: var(--wsfaq-deep);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 11px 18px;
}

.wsfaq-top-strip a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsfaq-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(220, 231, 245, 0.9);
  box-shadow: none;
}

.wsfaq-header-inner {
  width: 100%;
  max-width: none;
  min-height: 95px;
  margin: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.wsfaq-header-inner.wsfaq-container {
  width: 100%;
  max-width: none;
}

.wsfaq-logo {
  flex: 0 0 auto;
  margin-right: 72px;
}

.wsfaq-logo img {
  width: 240px;
  height: 50px;
  max-height: 50px;
  object-fit: contain;
}

.wsfaq-primary-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  min-width: 0;
}

.wsfaq-menu,
.wsfaq-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wsfaq-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.wsfaq-menu > li {
  position: relative;
}

.wsfaq-menu a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #061126;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 0;
}

.wsfaq-menu li.menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--wsfaq-primary);
  border-bottom: 2px solid var(--wsfaq-primary);
  transform: rotate(45deg) translateY(-2px);
}

.wsfaq-menu li:hover > a,
.wsfaq-menu li:focus-within > a {
  color: var(--wsfaq-primary);
}

.wsfaq-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 245px;
  background: #ffffff;
  border: 1px solid var(--wsfaq-border);
  border-radius: var(--wsfaq-radius);
  box-shadow: var(--wsfaq-shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.wsfaq-menu li:hover > .sub-menu,
.wsfaq-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wsfaq-menu .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  color: var(--wsfaq-text);
  font-weight: 700;
}

.wsfaq-menu .sub-menu a:hover,
.wsfaq-menu .sub-menu a:focus {
  color: var(--wsfaq-primary);
  background: #f3f7ff;
}

.wsfaq-login-btn,
.wsfaq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.wsfaq-login-btn {
  margin-left: auto;
  min-width: 132px;
  height: 52px;
  background: #02040a;
  color: #ffffff;
  font-size: 14px;
  padding: 0 25px;
}

.wsfaq-login-btn:hover,
.wsfaq-btn:hover {
  transform: translateY(-2px);
}

.wsfaq-lock-icon {
  position: relative;
  width: 13px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
  display: inline-block;
  flex: 0 0 auto;
}

.wsfaq-lock-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.wsfaq-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--wsfaq-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--wsfaq-navy);
}

.wsfaq-mobile-icon,
.wsfaq-mobile-icon::before,
.wsfaq-mobile-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.wsfaq-mobile-icon {
  position: relative;
}

.wsfaq-mobile-icon::before,
.wsfaq-mobile-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.wsfaq-mobile-icon::before {
  top: -7px;
}

.wsfaq-mobile-icon::after {
  top: 7px;
}

.wsfaq-mobile-toggle.is-open .wsfaq-mobile-icon {
  background: transparent;
}

.wsfaq-mobile-toggle.is-open .wsfaq-mobile-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.wsfaq-mobile-toggle.is-open .wsfaq-mobile-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.wsfaq-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(11, 92, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  padding: 80px 0 74px;
}

.wsfaq-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -48% 45%;
  height: 360px;
  background: radial-gradient(circle, rgba(18, 194, 233, 0.20), transparent 62%);
  z-index: -1;
}

.wsfaq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 60px;
}

.wsfaq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 9px 14px;
  color: var(--wsfaq-primary);
  background: #ffffff;
  border: 1px solid #d8e7ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wsfaq-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wsfaq-green);
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}

.wsfaq-hero h1,
.wsfaq-page-hero h1,
.wsfaq-section-title h2,
.wsfaq-single-title {
  margin: 0;
  color: var(--wsfaq-navy);
  letter-spacing: 0;
  line-height: 1.08;
}

.wsfaq-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
}

.wsfaq-hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: #314665;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.wsfaq-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 710px;
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid #cfe0f7;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 92, 255, 0.12);
  overflow: hidden;
}

.wsfaq-search input[type="search"] {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  color: var(--wsfaq-text);
  outline: none;
  font-size: 17px;
  background: #ffffff;
}

.wsfaq-search button {
  align-self: stretch;
  min-width: 146px;
  border: 0;
  background: var(--wsfaq-primary);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.wsfaq-search button:hover {
  background: #0149d4;
}

.wsfaq-search.compact {
  margin-top: 0;
  display: grid;
  box-shadow: none;
}

.wsfaq-search.compact input[type="search"] {
  min-height: 52px;
  font-size: 15px;
}

.wsfaq-search.compact button {
  min-height: 48px;
}

.wsfaq-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wsfaq-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #d8e7ff;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #244063;
  font-size: 13px;
  font-weight: 800;
}

.wsfaq-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #071735 0%, #0b5cff 100%);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 23, 53, 0.22);
  min-height: 415px;
  padding: 34px;
}

.wsfaq-visual-card::before,
.wsfaq-visual-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
}

.wsfaq-visual-card::before {
  width: 300px;
  height: 300px;
  right: -90px;
  top: -90px;
}

.wsfaq-visual-card::after {
  width: 220px;
  height: 220px;
  left: -86px;
  bottom: -90px;
}

.wsfaq-visual-content {
  position: relative;
  z-index: 1;
}

.wsfaq-visual-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #9cdcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wsfaq-visual-card h2 {
  max-width: 330px;
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.wsfaq-visual-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.wsfaq-visual-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 800;
}

.wsfaq-visual-list i {
  color: #9cecff;
}

.wsfaq-section {
  padding: 82px 0;
  background: #ffffff;
}

.wsfaq-section-muted {
  background: var(--wsfaq-bg);
}

.wsfaq-section-title {
  max-width: 770px;
  margin-bottom: 36px;
}

.wsfaq-section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wsfaq-section-title span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--wsfaq-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wsfaq-section-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
}

.wsfaq-section-title p {
  margin: 14px 0 0;
  color: var(--wsfaq-muted);
  font-size: 18px;
}

.wsfaq-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wsfaq-card,
.wsfaq-article-card,
.wsfaq-help-card,
.wsfaq-sidebar-card {
  background: var(--wsfaq-card);
  border: 1px solid var(--wsfaq-border);
  border-radius: var(--wsfaq-radius);
  box-shadow: 0 16px 42px rgba(7, 23, 53, 0.06);
}

.wsfaq-category-card {
  position: relative;
  display: block;
  min-height: 248px;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.wsfaq-category-card:hover,
.wsfaq-category-card:focus {
  transform: translateY(-5px);
  border-color: rgba(11, 92, 255, 0.28);
  box-shadow: var(--wsfaq-shadow);
}

.wsfaq-category-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.wsfaq-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wsfaq-primary);
  background: #edf5ff;
  border-radius: 8px;
  font-size: 22px;
}

.wsfaq-count {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--wsfaq-primary);
  font-size: 12px;
  font-weight: 900;
}

.wsfaq-category-card h3 {
  margin: 22px 0 10px;
  color: var(--wsfaq-navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

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

.wsfaq-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--wsfaq-primary);
  font-weight: 900;
}

.wsfaq-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.wsfaq-article-list {
  display: grid;
  gap: 16px;
}

.wsfaq-article-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  transition: 0.18s ease;
}

.wsfaq-article-card:hover,
.wsfaq-article-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--wsfaq-shadow);
  border-color: rgba(11, 92, 255, 0.25);
}

.wsfaq-article-card h3 {
  margin: 0;
  color: var(--wsfaq-navy);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.wsfaq-article-card p {
  margin: 7px 0 0;
  color: var(--wsfaq-muted);
}

.wsfaq-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
  color: #71829b;
  font-size: 13px;
  font-weight: 700;
}

.wsfaq-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--wsfaq-primary);
  background: #edf5ff;
}

.wsfaq-help-card {
  padding: 28px;
}

.wsfaq-help-card.dark {
  color: #ffffff;
  background: linear-gradient(145deg, var(--wsfaq-deep), #0b3f97);
  border: 0;
}

.wsfaq-help-card h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

.wsfaq-help-card p {
  margin: 0 0 22px;
  color: inherit;
  opacity: 0.82;
}

.wsfaq-btn {
  min-height: 50px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--wsfaq-primary);
}

.wsfaq-btn.secondary {
  color: var(--wsfaq-primary);
  background: #ffffff;
  border: 1px solid #cfe0f7;
}

.wsfaq-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wsfaq-process-card {
  padding: 26px;
  min-height: 210px;
}

.wsfaq-process-card strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--wsfaq-primary);
  font-weight: 900;
}

.wsfaq-process-card h3 {
  margin: 0 0 10px;
  color: var(--wsfaq-navy);
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0;
}

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

.wsfaq-cta {
  padding: 74px 0;
  background: #ffffff;
}

.wsfaq-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(18, 194, 233, 0.25), transparent 28%),
    linear-gradient(135deg, var(--wsfaq-deep), var(--wsfaq-primary));
  box-shadow: 0 26px 70px rgba(7, 23, 53, 0.22);
}

.wsfaq-cta-box h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.wsfaq-cta-box p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
}

.wsfaq-kb-hero {
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 62px 24px 70px;
  background: linear-gradient(135deg, #1c21a5 0%, #0b5cff 100%);
  color: #ffffff;
  text-align: center;
}

.wsfaq-kb-hero-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.wsfaq-kb-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.wsfaq-kb-hero p {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,0.94);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}

.wsfaq-kb-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  width: min(710px, 100%);
  min-height: 66px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(2, 8, 42, 0.14);
}

.wsfaq-kb-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 38px;
  color: var(--wsfaq-text);
  background: #ffffff;
  font-size: 16px;
}

.wsfaq-kb-search input::placeholder {
  color: #c4c8d0;
}

.wsfaq-kb-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #78a4ff;
  color: #ffffff;
  cursor: pointer;
}

.wsfaq-kb-search button:hover {
  background: #5f90ff;
}

.wsfaq-search-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.wsfaq-search-icon::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -8px;
  width: 15px;
  height: 4px;
  border-radius: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

.wsfaq-kb-categories {
  padding: 58px 0 86px;
  background: #ffffff;
}

.wsfaq-kb-container {
  width: min(1170px, calc(100% - 48px));
  margin: 0 auto;
}

.wsfaq-kb-title {
  margin: 0 auto 56px;
  text-align: center;
}

.wsfaq-kb-title h2 {
  margin: 0;
  color: #222a35;
  font-size: clamp(34px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.wsfaq-kb-title h2 span {
  color: #3f88ff;
}

.wsfaq-kb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.wsfaq-kb-card {
  display: block;
  min-height: 245px;
  padding: 42px 20px 34px;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background: #ffffff;
  color: #071735;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.wsfaq-kb-card:hover,
.wsfaq-kb-card:focus {
  transform: translateY(-3px);
  border-color: #c9d8f3;
  box-shadow: 0 18px 42px rgba(7, 23, 53, 0.08);
}

.wsfaq-kb-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dfe3e8;
}

.wsfaq-kb-card h3 {
  margin: 0;
  color: #00335d;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.wsfaq-topic-logo {
  width: auto;
  max-width: 118px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center right;
  display: block;
}

.wsfaq-topic-logo-wordpress,
.wsfaq-topic-logo-domains-dns,
.wsfaq-topic-logo-email,
.wsfaq-topic-logo-ftp,
.wsfaq-topic-logo-vps,
.wsfaq-topic-logo-ssl,
.wsfaq-topic-logo-cybersecurity,
.wsfaq-topic-logo-databases {
  height: 48px;
}

.wsfaq-topic-logo-whmcs {
  max-width: 126px;
  height: 34px;
}

.wsfaq-kb-card p {
  min-height: 58px;
  margin: 18px 0 22px;
  color: #172033;
  font-size: 15px;
  line-height: 1.55;
}

.wsfaq-kb-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 8px;
  color: #317be8;
  background: #eef6ff;
  font-size: 14px;
  font-weight: 800;
}

.wsfaq-kb-offer {
  padding: 20px 24px 92px;
  background: #ffffff;
}

.wsfaq-kb-offer-inner {
  width: min(1170px, 100%);
  margin: 0 auto;
  padding: 42px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #071735, #0b5cff);
}

.wsfaq-kb-offer span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9edcff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wsfaq-kb-offer h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.wsfaq-kb-offer p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.wsfaq-kb-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--wsfaq-primary);
  font-weight: 900;
}

.wsfaq-page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(11, 92, 255, 0.12), transparent 34%),
    #ffffff;
}

.wsfaq-page-hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
}

.wsfaq-page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--wsfaq-muted);
  font-size: 18px;
}

.wsfaq-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.wsfaq-grid-list {
  display: grid;
  gap: 16px;
}

.wsfaq-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.wsfaq-sidebar-card {
  padding: 24px;
}

.wsfaq-sidebar-card h3 {
  margin: 0 0 14px;
  color: var(--wsfaq-navy);
  font-size: 21px;
  letter-spacing: 0;
}

.wsfaq-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.wsfaq-sidebar-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 8px;
  color: #243957;
  background: #f6f9fc;
  font-weight: 800;
}

.wsfaq-sidebar-list a:hover {
  color: var(--wsfaq-primary);
  background: #edf5ff;
}

.wsfaq-single-shell {
  padding: 70px 0 86px;
  background: #ffffff;
}

.wsfaq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #6a7d97;
  font-size: 14px;
  font-weight: 800;
}

.wsfaq-breadcrumb a {
  color: var(--wsfaq-primary);
}

.wsfaq-single-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
}

.wsfaq-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 18px;
  color: #6a7d97;
  font-weight: 800;
}

.wsfaq-single-content {
  margin-top: 36px;
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--wsfaq-border);
  border-radius: var(--wsfaq-radius);
  box-shadow: 0 16px 42px rgba(7, 23, 53, 0.06);
  color: #243957;
  font-size: 18px;
  line-height: 1.8;
}

.wsfaq-single-content h2,
.wsfaq-single-content h3 {
  margin-top: 1.5em;
  color: var(--wsfaq-navy);
  letter-spacing: 0;
}

.wsfaq-single-content a {
  color: var(--wsfaq-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wsfaq-pagination,
.wsfaq-post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.wsfaq-pagination a,
.wsfaq-pagination span,
.wsfaq-post-nav a {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--wsfaq-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--wsfaq-navy);
  font-weight: 900;
}

.wsfaq-pagination .current,
.wsfaq-pagination a:hover,
.wsfaq-post-nav a:hover {
  color: #ffffff;
  background: var(--wsfaq-primary);
  border-color: var(--wsfaq-primary);
}

.wsfaq-no-results {
  padding: 34px;
  border: 1px solid var(--wsfaq-border);
  border-radius: var(--wsfaq-radius);
  background: #ffffff;
}

.wsmw-footer {
  width: 100%;
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #050914 100%);
  color: #dbe7f7;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.wsmw-footer,
.wsmw-footer * {
  box-sizing: border-box;
}

.wsmw-footer a {
  text-decoration: none;
}

.wsmw-container {
  width: 100%;
  max-width: 1580px;
  margin: 0 auto;
  padding: 42px 32px 24px;
}

.wsmw-top {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 34px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wsmw-logo img {
  width: 268px;
  max-width: 100%;
}

.wsmw-brand p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #9fb9d8;
  font-size: 16px;
  line-height: 1.7;
}

.wsmw-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 12px;
}

.wsmw-contact a,
.wsmw-legal div {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.wsmw-contact span,
.wsmw-legal span {
  display: block;
  color: #7d93b2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.wsmw-contact strong,
.wsmw-legal strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.wsmw-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.wsmw-col h4 {
  position: relative;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.wsmw-col h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 9px;
  background: var(--wsfaq-primary);
}

.wsmw-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.wsmw-col a {
  color: #9fb9d8;
  font-size: 14px;
  line-height: 1.45;
}

.wsmw-col a:hover,
.wsmw-policy a:hover,
.wsmw-social a:hover {
  color: #ffffff;
}

.wsmw-legal {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 26px;
}

.wsmw-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.wsmw-copy,
.wsmw-policy a {
  color: #9fb9d8;
  font-size: 14px;
}

.wsmw-policy,
.wsmw-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wsmw-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
}

.wsmw-payments {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.wsmw-payments img {
  height: 34px;
  width: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 8px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .wsfaq-header-inner {
    padding: 0 28px;
  }

  .wsfaq-logo {
    margin-right: 34px;
  }

  .wsfaq-primary-nav {
    gap: 16px;
  }

  .wsfaq-menu {
    gap: 16px;
  }

  .wsfaq-hero-grid,
  .wsfaq-feature-layout,
  .wsfaq-content-layout {
    grid-template-columns: 1fr;
  }

  .wsfaq-visual-card,
  .wsfaq-sidebar {
    position: static;
  }

  .wsmw-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wsmw-top,
  .wsmw-legal,
  .wsmw-bottom {
    grid-template-columns: 1fr;
  }

  .wsfaq-kb-container,
  .wsfaq-kb-offer-inner {
    width: min(1170px, calc(100% - 56px));
  }

  .wsfaq-kb-grid {
    gap: 24px;
  }
}

@media (max-width: 920px) {
  body.admin-bar .wsfaq-site-header {
    top: 46px;
  }

  .wsfaq-container {
    width: min(100% - 28px, var(--wsfaq-container));
  }

  .wsfaq-header-inner {
    min-height: 78px;
    justify-content: space-between;
    padding: 0 18px;
  }

  .wsfaq-logo img {
    width: 205px;
    height: auto;
    max-height: 46px;
  }

  .wsfaq-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .wsfaq-primary-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    height: 100vh;
    display: block;
    padding: 92px 18px 28px;
    background: rgba(7, 23, 53, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.18s ease;
  }

  .wsfaq-mobile-open .wsfaq-primary-nav {
    opacity: 1;
    visibility: visible;
  }

  .wsfaq-menu,
  .wsfaq-login-btn {
    width: min(360px, calc(100% - 28px));
    margin-left: auto;
    margin-right: auto;
  }

  .wsfaq-menu {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--wsfaq-shadow);
  }

  .wsfaq-menu a {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-radius: 8px;
    background: #f7faff;
  }

  .wsfaq-menu .sub-menu {
    position: static;
    min-width: 0;
    margin: 6px 0 0;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }

  .wsfaq-menu li.wsfaq-submenu-open > .sub-menu {
    display: block;
  }

  .wsfaq-login-btn {
    margin-top: 10px;
  }

  .wsfaq-hero {
    padding: 56px 0;
  }

  .wsfaq-search {
    display: grid;
  }

  .wsfaq-search button {
    min-height: 52px;
  }

  .wsfaq-category-grid,
  .wsfaq-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wsfaq-article-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .wsfaq-arrow {
    display: none;
  }

  .wsfaq-cta-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .wsmw-contact,
  .wsmw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wsfaq-kb-hero {
    min-height: 360px;
    padding: 54px 18px 62px;
  }

  .wsfaq-kb-grid,
  .wsfaq-kb-offer-inner {
    grid-template-columns: 1fr;
  }

  .wsfaq-kb-card {
    min-height: 220px;
  }

  .wsfaq-kb-offer-inner {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .wsfaq-top-strip {
    font-size: 12px;
  }

  .wsfaq-logo img {
    width: 184px;
    max-height: 42px;
  }

  .wsfaq-hero h1,
  .wsfaq-page-hero h1,
  .wsfaq-single-title {
    font-size: 38px;
  }

  .wsfaq-hero-grid {
    gap: 32px;
  }

  .wsfaq-visual-card {
    min-height: auto;
    padding: 26px;
  }

  .wsfaq-visual-card h2 {
    font-size: 28px;
  }

  .wsfaq-category-grid,
  .wsfaq-process-grid {
    grid-template-columns: 1fr;
  }

  .wsfaq-section {
    padding: 58px 0;
  }

  .wsfaq-single-content {
    padding: 24px;
    font-size: 16px;
  }

  .wsfaq-kb-hero {
    min-height: 330px;
    padding: 42px 16px 50px;
  }

  .wsfaq-kb-hero h1 {
    font-size: 38px;
  }

  .wsfaq-kb-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .wsfaq-kb-search {
    grid-template-columns: minmax(0, 1fr) 68px;
    min-height: 58px;
    margin-top: 26px;
  }

  .wsfaq-kb-search input {
    padding: 0 20px;
    font-size: 15px;
  }

  .wsfaq-search-icon {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .wsfaq-search-icon::after {
    right: -8px;
    bottom: -6px;
    width: 12px;
    height: 3px;
  }

  .wsfaq-kb-categories {
    padding: 46px 0 58px;
  }

  .wsfaq-kb-container {
    width: min(100% - 28px, 1170px);
  }

  .wsfaq-kb-title {
    margin-bottom: 30px;
  }

  .wsfaq-kb-title h2 {
    font-size: 31px;
  }

  .wsfaq-kb-card {
    min-height: 0;
    padding: 26px 18px 24px;
  }

  .wsfaq-kb-card-head {
    gap: 14px;
    min-height: 36px;
    padding-bottom: 18px;
  }

  .wsfaq-kb-card h3 {
    font-size: 15px;
  }

  .wsfaq-topic-logo {
    max-width: 92px;
    height: 36px;
  }

  .wsfaq-kb-card p {
    min-height: 0;
  }

  .wsfaq-kb-offer {
    padding: 0 14px 58px;
  }

  .wsfaq-kb-offer-inner {
    width: 100%;
    padding: 28px 22px;
  }

  .wsmw-container {
    padding: 34px 18px 22px;
  }

  .wsmw-contact,
  .wsmw-grid,
  .wsmw-legal,
  .wsmw-bottom {
    grid-template-columns: 1fr;
  }

  .wsmw-policy,
  .wsmw-social {
    flex-wrap: wrap;
  }
}
