@font-face {
  font-family: "SGFanoos";
  src: url("SGFanoos-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SGFanoos";
  src: url("SGFanoos-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #4285f4;
  --ink: #0f172a;
  --muted: #475569;
  --panel: rgba(2, 6, 23, 0.03);
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-yellow: #fbbc05;
  --g-green: #34a853;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  background: #f8fafc;
  color: var(--ink);
}

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

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

/* Background grid */
.bg-grid {
  background-image:
    radial-gradient(circle at 30% 10%, rgba(66, 133, 244, 0.12), transparent 46%),
    radial-gradient(circle at 90% 0%, rgba(66, 133, 244, 0.08), transparent 45%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.03), transparent 35%),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 44px 44px, 44px 44px;
  background-position: 0 0, 0 0, 0 0, -1px -1px, -1px -1px;
}


.hero-section {
  background-color: #ffffff;
}

.section {
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.section-alt {
  background: #ffffff;
}

.section-warm {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 255, 255, 0.9));
}

.glow {
  position: relative;
  overflow: hidden;
}

.glow::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 186, 120, 0.22), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(66, 133, 244, 0.16), transparent 45%);
  z-index: -1;
  filter: blur(6px);
}

.google-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-blue { background: var(--g-blue); }
.dot-red { background: var(--g-red); }
.dot-yellow { background: var(--g-yellow); }
.dot-green { background: var(--g-green); }

.ads-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ads-mark img {
  width: 26px;
  height: 26px;
  display: block;
}

.hero-media {
  position: relative;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 20% 10%, rgba(66, 133, 244, 0.16), transparent 60%),
    radial-gradient(420px 260px at 85% 15%, rgba(52, 168, 83, 0.14), transparent 60%),
    radial-gradient(320px 220px at 80% 85%, rgba(251, 188, 5, 0.12), transparent 55%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.03), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.service-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.service-tag {
  font-size: 11px;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.15);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}

.service-desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

.service-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.service-list div::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.8);
  margin-left: 8px;
  vertical-align: middle;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-item:hover {
  color: var(--ink);
  background: #f1f5f9;
}

.nav-item.is-active {
  color: var(--primary);
  background: rgba(66, 133, 244, 0.12);
  border: 1px solid rgba(66, 133, 244, 0.22);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 8px;
  display: none;
  z-index: 30;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
}

.dropdown-link:hover {
  background: #f8fafc;
  color: var(--ink);
}

.dropdown-link.is-active {
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
}

.mobile-nav-link {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-nav-link.is-active {
  border-color: rgba(66, 133, 244, 0.32);
  background: rgba(66, 133, 244, 0.1);
  color: var(--ink);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(66, 133, 244, 0.15);
  background: rgba(66, 133, 244, 0.08);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--primary);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.section-lead {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 52ch;
}

.stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.stat-title {
  font-size: 12px;
  color: var(--muted);
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.step-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-index {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.step-desc {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.link-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.link-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.link-card-desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.link-card-action {
  font-size: 12px;
  color: var(--primary);
  white-space: nowrap;
}

.price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.price-tag {
  font-size: 11px;
  color: var(--primary);
  border: 1px solid rgba(66, 133, 244, 0.2);
  background: rgba(66, 133, 244, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  width: fit-content;
}

.price-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.price-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid var(--slate-200);
  padding: 10px 12px;
  text-align: right;
}

.pricing-table th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 700;
}

.cta-banner {
  border: 1px solid var(--slate-200);
  background: linear-gradient(120deg, rgba(66, 133, 244, 0.08), rgba(255, 255, 255, 0.9));
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.cta-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 6px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.tag-pill.blog-filter-btn {
  cursor: pointer;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  line-height: 1.55;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tag-pill.blog-filter-btn:hover {
  border-color: rgba(66, 133, 244, 0.35);
  color: var(--ink);
}

.tag-pill.is-active {
  border-color: rgba(66, 133, 244, 0.45);
  background: rgba(66, 133, 244, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.post-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.post-grid.is-loading {
  opacity: 0.56;
  pointer-events: none;
}

.post-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.post-card-empty {
  text-align: center;
  justify-items: center;
}

.post-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.post-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.7;
}

.post-title a {
  color: inherit;
  text-decoration: none;
}

.post-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.post-link {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
}

.blog-more-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.blog-more-btn {
  height: 44px;
  min-width: 152px;
  border-radius: 14px;
  border: 1px solid rgba(66, 133, 244, 0.3);
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  color: #2558c8;
  font-size: 13px;
  font-weight: 700;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-more-btn:hover {
  border-color: rgba(66, 133, 244, 0.55);
  background: #ffffff;
}

.blog-more-btn:disabled,
.blog-more-btn.is-loading {
  cursor: wait;
  opacity: 0.7;
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
  background: #f8fafc;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(66, 133, 244, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card--whatsapp .contact-card-icon {
  background: #e9f9ef;
  color: #25d366;
}

.contact-card--ticket .contact-card-icon {
  background: #eef2ff;
  color: #6366f1;
}

.contact-card--email .contact-card-icon {
  background: #fef3c7;
  color: #f59e0b;
}

.contact-card--phone .contact-card-icon {
  background: #e0f2fe;
  color: #0ea5e9;
}

.contact-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.contact-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.form-panel {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.form-panel--compact {
  padding: 20px;
  gap: 12px;
}

.form-panel--compact .form-stack {
  gap: 12px;
}

.form-panel--compact .form-input,
.form-panel--compact .form-textarea {
  padding: 10px 12px;
  font-size: 12px;
}

.form-panel--compact .form-label {
  font-size: 11px;
}

.form-panel--compact .form-submit {
  padding: 10px 16px;
  font-size: 12px;
}

.form-header {
  display: grid;
  gap: 6px;
}

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

.form-row {
  display: grid;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  color: var(--muted);
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.45);
}

.method-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-pill {
  position: relative;
  display: inline-flex;
}

.method-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method-pill span {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.method-pill input:checked + span {
  border-color: rgba(66, 133, 244, 0.45);
  background: rgba(66, 133, 244, 0.12);
  color: var(--ink);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.form-help {
  font-size: 12px;
  color: var(--muted);
}

.form-submit {
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.form-submit:hover {
  filter: brightness(0.95);
}

.form-message {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.9;
}

.form-message.hidden {
  display: none;
}

.form-message.is-success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.form-message.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.contact-office-box {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.contact-office-box h3 {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
}

.contact-office-address,
.contact-office-phone {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
}

.contact-office-phone {
  color: var(--primary);
  font-weight: 700;
}

.info-panel {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-title {
  font-size: 12px;
  color: var(--muted);
}

.info-meta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.info-note {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px dashed var(--slate-200);
  padding-top: 12px;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #cbd5f5;
  background: #ffffff;
  transition: all 0.2s ease;
}

.radio-text {
  transition: color 0.2s ease;
}

.radio-pill input:checked + .radio-dot {
  border-color: var(--g-blue);
  background: var(--g-blue);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.12);
}

.radio-pill input:checked + .radio-dot + .radio-text {
  color: var(--ink);
}

.range-wrap {
  width: 100%;
}

.range-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66,133,244,0.9), rgba(66,133,244,0.2));
  outline: none;
}

.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--g-blue);
}

.range-wrap input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--g-blue);
}

.result-card {
  background: #f8fafc;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-row {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  background: transparent;
  border: none;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--primary);
  line-height: 1;
}

.faq-row.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}

.seo-box {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.seo-content {
  max-height: 110px;
  overflow: hidden;
}

.seo-content.is-open {
  max-height: none;
}

.seo-toggle {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1f4fc9;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(66, 133, 244, 0.28);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  transition: all 0.2s ease;
}

.seo-toggle:hover {
  background: #ffffff;
  border-color: rgba(66, 133, 244, 0.5);
}

.blog-single-page {
  background: #f1f5f9;
}

.blog-single-shell {
  max-width: 1320px;
}

.blog-layout {
  display: grid;
  gap: 24px;
}

.blog-single {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
}

.blog-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: #1f5ad8;
}

.blog-single-head {
  display: grid;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
}

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-single-meta span {
  font-size: 11px;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  padding: 4px 10px;
}

.blog-single-meta .is-category {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

.blog-single-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.55;
  color: #0f172a;
}

.blog-single-lead {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #475569;
}

.blog-single-cover {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.blog-single-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-single-content-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 16px;
}

.blog-single-content {
  font-size: 15px;
  line-height: 2.1;
  color: #334155;
}

.blog-single-content h2 {
  color: #0f172a;
  margin: 26px 0 12px;
  line-height: 1.8;
  font-size: 23px;
}

.blog-single-content h3 {
  color: #1e293b;
  margin: 22px 0 10px;
  line-height: 1.8;
  font-size: 19px;
}

.blog-single-content h4 {
  color: #334155;
  margin: 18px 0 8px;
  line-height: 1.9;
  font-size: 16px;
}

.blog-single-content p {
  margin: 0 0 14px;
}

.blog-single-content ul,
.blog-single-content ol {
  margin: 0 0 14px;
  padding-right: 22px;
}

.blog-single-content blockquote {
  margin: 0 0 14px;
  border-right: 4px solid #93c5fd;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 14px;
  color: #334155;
}

.blog-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 12px;
}

.blog-single-content th,
.blog-single-content td {
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  text-align: right;
  font-size: 13px;
}

.blog-single-content th {
  background: #f8fafc;
  color: #334155;
}

.blog-single-content a {
  color: #1d4ed8;
  text-decoration: underline;
  text-decoration-color: #93c5fd;
  text-underline-offset: 3px;
  font-weight: 700;
}

.single-inline-ad {
  border: 1px solid #93c5fd;
  background: linear-gradient(90deg, #dbeafe 0%, #eff6ff 55%, #ffffff 100%);
  border-radius: 16px;
  padding: 14px;
  margin: 14px 0;
  display: grid;
  gap: 8px;
}

.single-inline-ad h3 {
  margin: 0;
  font-size: 15px;
  color: #1e3a8a;
  font-weight: 700;
}

.single-inline-ad p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #334155;
}

.single-inline-ad-btn {
  width: fit-content;
  min-height: 38px;
  border-radius: 11px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
}

.single-toc {
  border: 1px solid #bfdbfe;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  margin: 12px 0 16px;
}

.single-toc h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
}

.single-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.single-toc li a {
  display: block;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 7px 10px;
  color: #334155;
  font-size: 12px;
  line-height: 1.8;
  text-decoration: none;
}

.single-toc li a:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.single-suggestion {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 10px 12px;
  margin: 16px 0;
}

.single-suggestion p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #334155;
}

.single-suggestion a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.blog-single-tags {
  border: 1px solid #dce6f8;
  background: #f8fbff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.blog-single-tags strong {
  font-size: 13px;
  color: #20304b;
}

.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags-list a {
  text-decoration: none;
  font-size: 12px;
  color: #2f5db8;
  border: 1px solid #cfe0ff;
  background: #ffffff;
  border-radius: 999px;
  padding: 5px 10px;
}

.blog-single-share {
  border: 1px solid #dce6f8;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.blog-single-share strong {
  font-size: 13px;
  color: #20304b;
}

.blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-share-actions a,
.blog-share-actions button {
  border: 1px solid #d8e3f6;
  background: #f8fbff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: #315cae;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

.blog-author-box {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.blog-author-avatar {
  border-radius: 50%;
}

.blog-author-meta {
  display: grid;
  gap: 6px;
}

.blog-author-meta strong {
  font-size: 13px;
  color: #0f172a;
}

.blog-author-meta p {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  color: #475569;
}

.blog-single-nav {
  margin-top: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.blog-single-nav-item a {
  display: block;
  border: 1px solid #d9e3f6;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: #274d96;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.blog-comments-box {
  border: 1px solid #dce6f8;
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.blog-comments-box > h2 {
  margin: 0;
  font-size: 18px;
  color: #1d2c45;
}

.comments-area {
  display: grid;
  gap: 12px;
}

.comments-title {
  margin: 0;
  font-size: 14px;
  color: #213b66;
}

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

.comment-item {
  margin: 0;
  list-style: none;
}

.comment-body {
  border: 1px solid #dde7f8;
  border-radius: 14px;
  background: #f9fbff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.comment-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-avatar {
  border-radius: 50%;
}

.comment-meta {
  display: grid;
  gap: 2px;
}

.comment-author-name {
  font-size: 13px;
  color: #1e304f;
}

.comment-date {
  font-size: 11px;
  color: #5b7098;
}

.comment-reply-link {
  border: 1px solid #cfddf8;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  color: #2855a8;
  text-decoration: none;
  font-weight: 700;
}

.comment-awaiting {
  margin: 0;
  font-size: 12px;
  color: #b45309;
}

.comment-content {
  font-size: 13px;
  line-height: 2;
  color: #1d2c45;
}

.comment-content p {
  margin: 0;
}

.comments-closed-note {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.comments-empty-box {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.comments-empty-box strong {
  font-size: 13px;
  color: #1e293b;
}

.comments-empty-box p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.comment-user-state {
  margin: 0;
  font-size: 12px;
  color: #475569;
}

.comments-form-title {
  margin: 4px 0 0;
  font-size: 16px;
  color: #1d2c45;
}

.comment-note {
  margin: 0;
  font-size: 12px;
  color: #637ca7;
}

.comment-form-wrap {
  display: grid;
  gap: 10px;
}

.comment-form-wrap p {
  margin: 0;
}

.comment-form-wrap label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #2b426d;
}

.comment-form-wrap input,
.comment-form-wrap textarea {
  width: 100%;
  border: 1px solid #d6e2f7;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  padding: 9px 11px;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  font-size: 13px;
  outline: none;
}

.comment-form-wrap textarea {
  min-height: 118px;
  resize: vertical;
}

.comment-form-wrap input:focus,
.comment-form-wrap textarea:focus {
  border-color: #9ebcf8;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.15);
}

.comment-submit-btn {
  height: 42px;
  border-radius: 12px;
  border: 1px solid #2f6ae4;
  background: linear-gradient(180deg, #4d87f8, #2f6ae4);
  color: #ffffff;
  font-family: "SGFanoos", ui-sans-serif, system-ui;
  font-size: 13px;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}

.blog-aside {
  display: grid;
  gap: 14px;
  align-self: start;
}

.blog-side-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.blog-side-card h3 {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
}

.blog-side-card p {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  color: #475569;
}

.blog-side-card > a {
  width: 100%;
  border: 1px solid #2563eb;
  background: #2563eb;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.blog-related-list li {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 8px 10px;
  display: grid;
  gap: 4px;
}

.blog-related-list a {
  font-size: 12px;
  line-height: 1.9;
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
}

.blog-related-list span {
  font-size: 11px;
  color: #64748b;
}

.blog-aside-empty {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

/* Single Post (Sample-based) */
.pss-page {
  direction: rtl;
  background: #ffffff;
  color: #0f172a;
  font-family: "Fanoos", "SGFanoos", Tahoma, sans-serif;
  padding: 2rem 0 2.5rem;
}

body.single-post {
  background: #ffffff;
}

.pss-shell {
  width: 100%;
  margin: 0 auto;
  max-width: 72rem;
  padding-inline: 0;
}

.pss-sprite {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.pss-main-card {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.pss-grid {
  display: grid;
  gap: 1.5rem;
}

.pss-article {
  display: grid;
  gap: 1rem;
}

.pss-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 12px;
  color: #64748b;
}

.pss-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

.pss-breadcrumb a:hover {
  color: #1d4ed8;
}

.pss-header {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 1rem;
}

.pss-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pss-chip,
.pss-chip-category {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  padding: 0.25rem 0.65rem;
  line-height: 1.6;
}

.pss-chip-category {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

.pss-title {
  margin: 0.85rem 0 0;
  color: #0f172a;
  font-size: 1.65rem;
  line-height: 1.8;
  font-weight: 700;
}

.pss-lead {
  margin: 0.5rem 0 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 2;
}

.pss-cover {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.pss-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.pss-cover-placeholder {
  min-height: 220px;
  background: linear-gradient(135deg, #dbeafe 0%, #f1f5f9 50%, #eff6ff 100%);
}

.pss-content {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  padding: 1rem;
  color: #334155;
  font-size: 15px;
  line-height: 2.1;
}

.pss-content h2 {
  margin: 1.7rem 0 0.75rem;
  color: #0f172a;
  font-size: 1.45rem;
  line-height: 1.85;
  font-weight: 700;
}

.pss-content h3 {
  margin: 1.35rem 0 0.65rem;
  color: #1e293b;
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 700;
}

.pss-content h4 {
  margin: 1.15rem 0 0.5rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700;
}

.pss-content p {
  margin: 0 0 0.95rem;
}

.pss-content ul,
.pss-content ol {
  margin: 0 0 0.95rem;
  padding-right: 1.2rem;
}

.pss-content blockquote {
  margin: 0 0 0.95rem;
  border-right: 4px solid #93c5fd;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
  padding: 0.8rem 0.95rem;
}

.pss-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 0.95rem;
  overflow: hidden;
  border-radius: 12px;
}

.pss-content th,
.pss-content td {
  border: 1px solid #e2e8f0;
  padding: 0.55rem 0.65rem;
  text-align: right;
  font-size: 13px;
}

.pss-content th {
  background: #f8fafc;
  color: #334155;
}

.pss-content a {
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #93c5fd;
  text-underline-offset: 3px;
}

.pss-content .pss-btn-primary,
.pss-content .pss-btn-primary:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.pss-article-promo {
  border: 1px solid #93c5fd;
  border-radius: 16px;
  background: linear-gradient(90deg, #dbeafe 0%, #eff6ff 55%, #ffffff 100%);
  padding: 0.9rem;
  margin: 0.95rem 0;
  display: grid;
  gap: 0.55rem;
}

.pss-article-promo h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 15px;
  font-weight: 700;
}

.pss-article-promo p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #334155;
}

.pss-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 11px;
  border: 1px solid #2563eb;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 0 0.95rem;
}

.pss-btn-primary:hover {
  filter: brightness(0.95);
}

.pss-btn-full {
  width: 100%;
}

.pss-toc {
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  background: #fff;
  padding: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.pss-toc h3 {
  margin: 0 0 0.5rem;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 700;
}

.pss-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pss-toc li a {
  display: block;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #eff6ff;
  color: #334155;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.85;
  padding: 0.45rem 0.62rem;
}

.pss-toc li a:hover {
  border-color: #93c5fd;
  background: #dbeafe;
}

.pss-suggestion {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0.62rem 0.75rem;
  margin: 1rem 0;
}

.pss-suggestion p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.9;
}

.pss-author-box {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pss-author-avatar {
  border-radius: 999px;
}

.pss-author-meta {
  display: grid;
  gap: 0.35rem;
}

.pss-author-meta strong {
  color: #0f172a;
  font-size: 13px;
}

.pss-author-meta p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 2;
}

.pss-comments-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.pss-comments-card > h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}

.pss-demo-title {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
}

.pss-demo-box {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.85rem;
  display: grid;
  gap: 0.45rem;
}

.pss-demo-box h4 {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
}

.pss-demo-box p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #475569;
}

.pss-demo-empty {
  border-style: dashed;
  background: #f8fafc;
}

.pss-demo-thread {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.3rem;
}

.pss-demo-message {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.65rem;
  background: #fff;
}

.pss-demo-message-user {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.pss-demo-message-support {
  margin-right: 1rem;
}

.pss-demo-meta {
  font-size: 11px;
  color: #64748b;
}

.pss-demo-state-grid {
  display: grid;
  gap: 0.65rem;
}

.pss-demo-state {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem;
}

.pss-demo-state h4 {
  margin: 0;
  font-size: 13px;
}

.pss-demo-state p {
  margin: 0.2rem 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.pss-demo-state-login {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.pss-demo-state-guest {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.pss-demo-form {
  display: grid;
  gap: 0.65rem;
}

.pss-demo-form input,
.pss-demo-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  padding: 0.6rem 0.7rem;
  font-family: "Fanoos", "SGFanoos", Tahoma, sans-serif;
  font-size: 13px;
}

.pss-demo-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pss-comments-wrap {
  display: grid;
  gap: 0.75rem;
}

.pss-comments-title {
  margin: 0;
  font-size: 14px;
  color: #1e293b;
}

.pss-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pss-comment-list .children {
  list-style: none;
  margin: 0.6rem 0 0;
  padding-right: 0.9rem;
  border-right: 2px solid #e2e8f0;
  display: grid;
  gap: 0.6rem;
}

.pss-comment-item {
  margin: 0;
}

.pss-comment-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.pss-comment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.pss-comment-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pss-comment-avatar {
  border-radius: 999px;
}

.pss-comment-meta {
  display: grid;
  gap: 0.1rem;
}

.pss-comment-author {
  color: #0f172a;
  font-size: 13px;
}

.pss-comment-date {
  color: #64748b;
  font-size: 11px;
}

.pss-comment-reply {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  padding: 0.23rem 0.65rem;
  white-space: nowrap;
}

.pss-comment-awaiting {
  margin: 0;
  font-size: 12px;
  color: #b45309;
}

.pss-comment-content {
  color: #1e293b;
  font-size: 14px;
  line-height: 2;
}

.pss-comment-content p {
  margin: 0;
}

.pss-comments-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
}

.pss-comments-empty strong {
  color: #1e293b;
  font-size: 13px;
}

.pss-comments-empty p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}

.pss-comments-closed,
.pss-comment-user-state,
.pss-form-note {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.pss-form-title {
  margin: 0.15rem 0 0;
  font-size: 16px;
  color: #0f172a;
}

.pss-comment-form {
  display: grid;
  gap: 0.65rem;
}

.pss-comment-form p {
  margin: 0;
}

.pss-comment-form label {
  display: block;
  margin-bottom: 0.28rem;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.pss-comment-form input,
.pss-comment-form textarea {
  width: 100%;
  border: 1px solid #d6e2f7;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 0.58rem 0.68rem;
  font-family: "Fanoos", "SGFanoos", Tahoma, sans-serif;
  font-size: 13px;
  outline: none;
}

.pss-comment-form input:focus,
.pss-comment-form textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.13);
}

.pss-comment-form textarea {
  min-height: 118px;
  resize: vertical;
}

.pss-form-submit {
  min-height: 40px;
  border: none;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-family: "Fanoos", "SGFanoos", Tahoma, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}

.pss-aside {
  display: grid;
  gap: 0.9rem;
  align-self: start;
}

.pss-aside-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.pss-aside-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
}

.pss-aside-card p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 2;
}

.pss-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pss-related-list li {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.5rem 0.62rem;
  display: grid;
  gap: 0.2rem;
  color: #1f2937;
  font-size: 12px;
  line-height: 1.9;
  font-weight: 700;
}

.pss-related-list a {
  color: #1f2937;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.9;
  font-weight: 700;
}

.pss-related-list a:hover {
  color: #1d4ed8;
}

.pss-related-list span {
  color: #64748b;
  font-size: 11px;
}

.pss-aside-empty {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}

.pss-aside-card-cta {
  border-color: #bfdbfe;
  background: linear-gradient(to left, #eff6ff, #ffffff);
}

.pss-share-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.pss-share-btn {
  min-height: 38px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #ffffff;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.pss-share-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.pss-share-btn:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}

.pss-share-btn.is-copied {
  background: #dbeafe;
  border-color: #93c5fd;
}

.pss-shortlink-card {
  gap: 0.65rem;
}

.pss-shortlink-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
}

.pss-shortlink-input {
  width: 100%;
  min-height: 40px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 12px;
  font-family: inherit;
  padding: 0 0.75rem;
}

.pss-shortlink-copy {
  min-height: 40px;
  width: 100%;
}

@media (min-width: 1024px) {
  .pss-shortlink-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .pss-shortlink-copy {
    width: auto;
    min-width: 102px;
  }
}

.pss-sample-comments {
  display: grid;
  gap: 0.75rem;
}

.pss-sample-empty,
.pss-sample-thread-block {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.pss-sample-empty {
  border-style: dashed;
  background: #f8fafc;
}

.pss-sample-empty h4,
.pss-sample-thread-block h4 {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
}

.pss-sample-empty p {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 2;
}

.pss-sample-comment-list {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.pss-sample-comment-list .children {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.pss-sample-comment-item {
  margin: 0;
}

.pss-sample-comment-bubble {
  border-radius: 14px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.5rem;
}

.pss-sample-comment-bubble-support {
  border-color: #e2e8f0;
  background: #ffffff;
}

.pss-sample-comment-meta {
  color: #64748b;
  font-size: 11px;
}

.pss-sample-comment-content {
  color: #0f172a;
  font-size: 14px;
  line-height: 2;
}

.pss-sample-comment-content p {
  margin: 0;
}

.pss-sample-reply-link {
  justify-self: start;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
}

.pss-sample-state-grid {
  display: grid;
  gap: 0.65rem;
}

.pss-sample-state {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem;
}

.pss-sample-state h4 {
  margin: 0;
  font-size: 13px;
}

.pss-sample-state p {
  margin: 0.25rem 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.pss-sample-state-login {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.pss-sample-state-guest {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.pss-sample-form {
  display: grid;
  gap: 0.65rem;
}

.pss-sample-form p {
  margin: 0;
}

.pss-sample-input-wrap input,
.pss-sample-input-wrap textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  padding: 0.6rem 0.7rem;
  font-family: "Fanoos", "SGFanoos", Tahoma, sans-serif;
  font-size: 13px;
  outline: none;
}

.pss-sample-input-wrap input:focus,
.pss-sample-input-wrap textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.13);
}

.pss-sample-input-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.pss-sample-submit {
  border: none !important;
}

.pss-sample-closed {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}

@media (min-width: 768px) {
  .pss-page {
    padding: 2.5rem 0 3rem;
  }

  .pss-title {
    font-size: 2rem;
  }

  .pss-cover-placeholder {
    min-height: 320px;
  }

  .pss-comment-form {
    grid-template-columns: 1fr 1fr;
  }

  .pss-demo-state-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pss-demo-form {
    grid-template-columns: 1fr 1fr;
  }

  .pss-demo-form textarea,
  .pss-demo-form button {
    grid-column: span 2 / span 2;
  }

  .pss-sample-state-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pss-sample-form {
    grid-template-columns: 1fr 1fr;
  }

  .pss-sample-textarea-wrap,
  .pss-sample-form .form-submit {
    grid-column: span 2 / span 2;
  }

  .pss-form-comment,
  .pss-comment-form .form-submit,
  .pss-comment-form .pss-form-note {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .pss-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .pss-aside {
    position: sticky;
    top: var(--pss-sticky-top, 16px);
  }
}

body.admin-bar .pss-aside {
  top: var(--pss-sticky-top, 48px);
}

.cert-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-icon {
  width: 40px;
  height: auto;
}

footer {
  width: 100%;
}

footer > div:first-child {
  width: 100%;
  text-align: center;
}

footer > div:last-child {
  width: 100%;
  justify-content: center;
}

.cert-row {
  width: 100%;
  justify-content: center;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.seo-table th,
.seo-table td {
  border: 1px solid var(--slate-200);
  padding: 10px;
  text-align: right;
}

.seo-table th {
  background: #f8fafc;
  color: var(--ink);
  font-weight: 700;
}

.seo-figure {
  max-width: 360px;
  margin: 14px auto;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.seo-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-list {
  margin: 10px 0 0;
  padding: 0 18px 0 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.seo-list li {
  list-style: disc;
}

.client-logo {
  height: 24px;
  width: auto;
  opacity: 0.8;
  color: var(--slate-500);
  display: block;
}

.client-logo path {
  fill: currentColor !important;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.logo-item {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 16px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.testimonial-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Utilities */
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.inset-0 { inset: 0; }
.z-40 { z-index: 40; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-auto { margin-top: auto; }

.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-12 { padding-top: 3rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.h-1\.5 { height: 0.375rem; }
.w-1\.5 { width: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.max-w-6xl { max-width: 72rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; }
.max-w-\[52ch\] { max-width: 52ch; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.border { border: 1px solid var(--slate-200); }
.border-b { border-bottom: 1px solid var(--slate-200); }
.border-t { border-top: 1px solid var(--slate-200); }

.hover\:bg-slate-50:hover { background: #f8fafc; }
.hover\:brightness-95:hover { filter: brightness(0.95); }
.hover\:text-ink:hover { color: var(--ink); }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:text-\[14px\] { font-size: 14px; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:text-\[26px\] { font-size: 26px; }
  .md\:text-\[40px\] { font-size: 40px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
}

.shadow-soft { box-shadow: none; }
.shadow-line { box-shadow: none; }

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.25\] { line-height: 1.25; }
.leading-\[1\.35\] { line-height: 1.35; }
.tracking-tight { letter-spacing: -0.02em; }

.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[22px\] { font-size: 22px; }
.text-\[30px\] { font-size: 30px; }

.text-primary { color: var(--primary); }
.text-ink { color: var(--ink); }
.text-muted { color: var(--muted); }
.text-white { color: #ffffff; }

.bg-primary { background-color: var(--primary); }
.bg-primary\/5 { background-color: rgba(66, 133, 244, 0.05); }
.bg-primary\/8 { background-color: rgba(66, 133, 244, 0.08); }
.bg-primary\/10 { background-color: rgba(66, 133, 244, 0.10); }
.bg-primary\/12 { background-color: rgba(66, 133, 244, 0.12); }
.bg-primary\/45 { background-color: rgba(66, 133, 244, 0.45); }
.bg-primary\/55 { background-color: rgba(66, 133, 244, 0.55); }
.bg-primary\/70 { background-color: rgba(66, 133, 244, 0.70); }
.bg-primary\/80 { background-color: rgba(66, 133, 244, 0.80); }

.bg-slate-100 { background-color: var(--slate-100); }
.bg-white { background-color: #ffffff; }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.70); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.80); }
.bg-warm { background-color: #fff7ed; }

.border-slate-200 { border-color: var(--slate-200); }
.border-slate-200\/70 { border-color: rgba(226, 232, 240, 0.70); }
.border-primary\/15 { border-color: rgba(66, 133, 244, 0.15); }
.border-primary\/20 { border-color: rgba(66, 133, 244, 0.20); }

.underline { text-decoration: underline; }
.decoration-primary\/30 { text-decoration-color: rgba(66, 133, 244, 0.30); }

.whitespace-nowrap { white-space: nowrap; }

.backdrop-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.transition { transition: all 0.2s ease; }

.hover\:bg-slate-50:hover { background-color: var(--slate-50); }
.hover\:brightness-95:hover { filter: brightness(0.95); }
.hover\:shadow-soft:hover { box-shadow: none; }
.hover\:text-ink:hover { color: var(--ink); }

.group:hover .group-hover\:bg-primary\/12 { background-color: rgba(66, 133, 244, 0.12); }
.group:hover .group-hover\:decoration-primary\/60 { text-decoration-color: rgba(66, 133, 244, 0.60); }

.w-\[78\%\] { width: 78%; }
.w-\[85\%\] { width: 85%; }
.w-\[88\%\] { width: 88%; }

.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:inline-flex { display: inline-flex; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-footer { flex-direction: row; align-items: center; justify-content: space-between; }
  footer > div:first-child {
    width: auto;
    text-align: right;
  }
  footer > div:last-child {
    width: auto;
  }
  .cert-row {
    width: auto;
    justify-content: flex-end;
  }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:text-\[14px\] { font-size: 14px; }
  .md\:text-\[15px\] { font-size: 15px; }
  .md\:text-\[26px\] { font-size: 26px; }
  .md\:text-\[40px\] { font-size: 40px; }
  .cert-icon { width: 42px; }
  .client-logo { height: 28px; }
  .blog-single { padding: 26px; }
  .blog-single-head { padding: 22px; }
  .blog-single-content-wrap { padding: 22px; }
  .blog-single-title { font-size: 32px; }
  .comment-form-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .comment-form-wrap .comment-form-comment,
  .comment-form-wrap .form-submit,
  .comment-form-wrap .comment-note {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
  .blog-aside {
    position: sticky;
    top: 92px;
  }
}

/* Auth + Dashboard */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.98));
}

.auth-card {
  width: min(420px, 92vw);
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
}

.auth-brand {
  display: grid;
  gap: 6px;
  text-align: center;
}

.auth-brand a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
}

.auth-brand span {
  font-size: 12px;
  color: var(--muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.auth-tab {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--muted);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  cursor: pointer;
}

.auth-tab.is-active {
  border-color: rgba(66, 133, 244, 0.45);
  color: var(--primary);
  background: rgba(66, 133, 244, 0.08);
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form.hidden {
  display: none;
}

.auth-message {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
  font-size: 12px;
}

.password-meter {
  display: grid;
  gap: 6px;
}

.password-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.password-bar span {
  display: block;
  height: 100%;
  width: 0%;
  transition: width 0.2s ease;
}

.password-bar span.weak { background: #ef4444; }
.password-bar span.medium { background: #f59e0b; }
.password-bar span.strong { background: #10b981; }

.password-strength {
  font-size: 11px;
  color: var(--muted);
}

.auth-field {
  display: grid;
  gap: 6px;
}

.auth-field label {
  font-size: 11px;
  color: var(--muted);
}

.auth-field input,
.auth-field select {
  width: 100%;
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--ink);
  font-family: inherit;
}

.auth-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.auth-btn {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.auth-btn--primary {
  background: var(--primary);
  border-color: transparent;
  color: #ffffff;
}

.auth-btn--whatsapp {
  background: #25d366;
  border-color: transparent;
  color: #ffffff;
}

.auth-footer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.dash-body {
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(66, 133, 244, 0.12), transparent 65%),
    radial-gradient(720px 360px at 10% -20%, rgba(52, 168, 83, 0.08), transparent 60%),
    #f8fafc;
  color: var(--ink);
}

.dash-shell {
  min-height: 100vh;
  display: grid;
  gap: 16px;
  padding: 24px;
  width: min(1200px, 92vw);
  margin: 0 auto;
  align-content: start;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-date {
  font-size: 12px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  padding: 6px 12px;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.dash-layout {
  display: grid;
  gap: 16px;
  align-items: start;
}

.dash-sidebar {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.dash-link {
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  background: #f8fafc;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-link.is-active {
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.dash-main {
  display: grid;
  gap: 16px;
}

.dash-view {
  display: grid;
  gap: 16px;
}

.dash-view.hidden {
  display: none;
}

.dash-section {
  display: grid;
  gap: 12px;
}

.dash-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-main-grid {
  display: grid;
  gap: 16px;
}

.dash-stack {
  display: grid;
  gap: 16px;
}

.dash-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.dash-card--accent {
  border-color: rgba(66, 133, 244, 0.3);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), #ffffff 65%);
}

.dash-full {
  width: 100%;
}

.dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dash-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.dash-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px dashed var(--slate-200);
}

.dash-row:last-child {
  border-bottom: none;
}

.dash-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.12);
  color: var(--primary);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.dash-pill--success {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}

.dash-pill--warning {
  background: rgba(251, 146, 60, 0.16);
  color: #c2410c;
}

.dash-pill--info {
  background: rgba(59, 130, 246, 0.16);
  color: #1d4ed8;
}

.dash-pill--muted {
  background: rgba(148, 163, 184, 0.2);
  color: #64748b;
}

.dash-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-services {
  display: grid;
  gap: 12px;
}

.dash-service {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.dash-service--premium {
  border-color: rgba(66, 133, 244, 0.2);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.05), #ffffff 70%);
}

.dash-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-service-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dash-service-stat {
  border: 1px dashed var(--slate-200);
  border-radius: 14px;
  padding: 10px;
  font-size: 11px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.dash-service-stat strong {
  font-size: 12px;
  color: var(--ink);
}

.dash-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  font-size: 12px;
  color: var(--muted);
}

.dash-radio input {
  accent-color: var(--primary);
}

.dash-slider {
  display: grid;
  gap: 8px;
}

.dash-slider-head {
  font-size: 12px;
  color: var(--muted);
}

.dash-slider input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.4), rgba(66, 133, 244, 0.12));
  outline: none;
}

.dash-slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
}

.dash-slider-labels span {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #ffffff;
  white-space: nowrap;
  cursor: pointer;
}

.dash-slider-labels span.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
}

.dash-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.15);
  cursor: pointer;
}

.dash-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.15);
  cursor: pointer;
}

.dash-total {
  border: 1px solid var(--slate-200);
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--ink);
  display: grid;
  gap: 6px;
}

.dash-service-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.dash-service-meta {
  font-size: 12px;
  color: var(--muted);
}

.dash-service-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.dash-table-row {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr 0.7fr 0.7fr;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #ffffff;
  min-width: 680px;
  align-items: center;
}

.dash-table-row > * {
  display: flex;
  align-items: center;
}

.dash-cell--center {
  justify-content: center;
  text-align: center;
}

.dash-table-head {
  background: #f8fafc;
  font-weight: 700;
  color: var(--ink);
}

.dash-table--services .dash-table-row {
  grid-template-columns: 1.8fr 1fr 1fr 1fr 0.9fr;
  min-width: 760px;
}

.dash-alert {
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.12);
  color: #92400e;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 12px;
}

.dash-form {
  display: grid;
  gap: 12px;
}

.dash-form-row {
  display: grid;
  gap: 10px;
}

@media (min-width: 640px) {
  .dash-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dash-progress {
  display: grid;
  gap: 12px;
}

.dash-bar {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.dash-bar span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.dash-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .dash-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
  .dash-main-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 768px) {
  .dash-main-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.dash-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.dash-modal.hidden {
  display: none;
}

.dash-modal-card {
  width: min(520px, 92vw);
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

.dash-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dash-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dash-modal-close {
  border: none;
  background: #f1f5f9;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
}

.dash-modal-body {
  display: grid;
  gap: 10px;
}

.dash-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.dash-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.profile-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f1f5f9;
}

.profile-tab {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.profile-tab.is-active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 6px 12px rgba(2, 6, 23, 0.08);
}

.profile-pane.hidden {
  display: none;
}

.panel-link {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  color: var(--primary);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  width: fit-content;
}

.dash-wallet {
  position: relative;
  overflow: hidden;
}

.dash-wallet::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.75);
}

.dash-wallet-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  z-index: 1;
}
.auth-btn,
.dash-link,
.panel-link,
button,
input,
select,
textarea {
  font-family: inherit;
}

/* --- Single Post Comments (Redesign) --- */
.pss-comments-wrap {
  display: grid;
  gap: 0.95rem;
}

.pss-comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e5edf8;
}

.pss-comments-title {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.pss-comments-count {
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.28rem 0.66rem;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.pss-cmt-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  padding: 0.9rem;
  display: grid;
  gap: 0.32rem;
}

.pss-cmt-empty strong {
  color: #0f172a;
  font-size: 14px;
}

.pss-cmt-empty p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.9;
}

.pss-cmt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.pss-cmt-list .children {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.45rem 0.75rem 0.1rem 0;
  border-top: 1px solid #e2e8f0;
  border-right: 0;
  display: grid;
  gap: 0.35rem;
}

.pss-cmt-item {
  margin: 0;
  border: 1px solid #dbe7fa;
  border-radius: 16px;
  background: #f8fbff;
  padding: 0.8rem 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.pss-cmt-item.is-support {
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.pss-cmt-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pss-cmt-card.is-support {
  box-shadow: none;
}

.pss-cmt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.pss-cmt-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.pss-cmt-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
}

.pss-cmt-author-meta {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.pss-cmt-author {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.pss-cmt-meta {
  color: #64748b;
  font-size: 11px;
  line-height: 1.5;
}

.pss-cmt-reply,
.pss-cmt-card .comment-reply-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1d4ed8;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.pss-cmt-reply:hover,
.pss-cmt-card .comment-reply-link:hover {
  color: #1e40af;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  background: transparent;
}

.pss-cmt-list .children .pss-cmt-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.32rem;
}

.pss-cmt-list .children .pss-cmt-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0.25rem 0 0.35rem;
  gap: 0.28rem;
}

.pss-cmt-list .children .pss-cmt-item:not(:last-child) {
  border-bottom: 1px dashed #e2e8f0;
}

.pss-cmt-list .children .pss-cmt-avatar {
  display: none;
}

.pss-cmt-list .children .pss-cmt-author {
  font-size: 12px;
}

.pss-cmt-list .children .pss-cmt-author-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  flex-wrap: nowrap;
}

.pss-cmt-list .children .pss-cmt-meta {
  font-size: 10px;
  line-height: 1.4;
}

.pss-cmt-list .children .pss-cmt-body {
  font-size: 13px;
  line-height: 1.9;
}

.pss-cmt-list .children .pss-cmt-head {
  gap: 0.25rem;
}

.pss-comment-awaiting {
  margin: 0;
  color: #b45309;
  font-size: 12px;
  line-height: 1.8;
}

.pss-cmt-body {
  color: #1e293b;
  font-size: 14px;
  line-height: 2;
}

.pss-cmt-body p {
  margin: 0;
}

.pss-cmt-body a {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-color: #93c5fd;
  text-underline-offset: 2px;
}

.pss-cmt-pagination {
  margin-top: 0.1rem;
}

.pss-cmt-pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.pss-cmt-pagination .page-numbers li {
  margin: 0;
}

.pss-cmt-pagination .page-numbers a,
.pss-cmt-pagination .page-numbers span {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #ffffff;
  color: #1e293b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 0 0.4rem;
}

.pss-cmt-pagination .page-numbers .current {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
}

.pss-cmt-pagination .page-numbers .dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
  padding: 0;
  color: #94a3b8;
}

.pss-cmt-closed {
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  line-height: 1.9;
  padding: 0.55rem 0.7rem;
}

.pss-cmt-form-wrap {
  border-top: 1px solid #e5edf8;
  padding-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.pss-cmt-form-title {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.pss-cmt-cancel-reply {
  display: inline-flex;
  align-items: center;
}

.pss-cmt-cancel-reply a {
  color: #ef4444;
  font-size: 12px;
  text-decoration: none;
  margin-right: 0.45rem;
}

.pss-cmt-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.9;
}

.pss-cmt-note a {
  color: #2563eb;
  text-decoration: none;
}

.pss-cmt-note-login {
  color: #334155;
}

.pss-cmt-field {
  margin: 0;
  display: grid;
  gap: 0.34rem;
}

.pss-cmt-field label {
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.pss-cmt-field input,
.pss-cmt-field textarea {
  width: 100%;
  border: 1px solid #d6e2f7;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  padding: 0.62rem 0.74rem;
  font-size: 13px;
  line-height: 1.8;
  outline: none;
  transition: 0.2s ease;
}

.pss-cmt-field input:focus,
.pss-cmt-field textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.13);
}

.pss-cmt-field textarea {
  min-height: 132px;
  resize: vertical;
}

.pss-cmt-form .comment-form-cookies-consent {
  display: none !important;
}

#comments .comment-form-cookies-consent {
  display: none !important;
}

.pss-cmt-submit-row {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pss-cmt-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 42px;
  border: 1px solid #2563eb;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 0 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.pss-cmt-submit:hover {
  filter: brightness(0.95);
}

@media (min-width: 768px) {
  .pss-cmt-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .pss-cmt-field-full,
  .pss-cmt-submit-row,
  .pss-cmt-form .pss-cmt-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .pss-cmt-head {
    align-items: flex-start;
  }
}
