@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%;
  overflow-x: clip;
}

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;
  padding: clamp(6rem, 10vw, 8.5rem) 0 clamp(5.25rem, 8vw, 7rem);
  min-height: clamp(34rem, 76vh, 44rem);
  display: flex;
  align-items: center;
}

.hero-section > .hero-wrap,
.hero-section > .mx-auto {
  width: 100%;
}

.section {
  position: relative;
}

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

.section + .footer-section {
  border-top: 0;
}

.section-alt {
  background: #ffffff;
}

.section-warm {
  background: #fcfdff;
}

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

.glow::before {
  display: none;
}

.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: 20px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(66, 133, 244, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

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

.service-head-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.section-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(66, 133, 244, 0.16);
  background: rgba(66, 133, 244, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

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

.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.12);
  background: rgba(66, 133, 244, 0.05);
  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: 16px;
  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: #ffffff;
  border-radius: 20px;
  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;
  }
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark-sm {
  width: 28px;
  height: 28px;
}

.brand-mark-ring,
.brand-mark-core,
.brand-mark-node {
  position: absolute;
  border-radius: 999px;
}

.brand-mark-ring {
  inset: 2px;
  border: 1px solid rgba(66, 133, 244, 0.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(66, 133, 244, 0.18), transparent 52%),
    radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.14), transparent 42%),
    #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.brand-mark-core {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #4285f4, #6ca2ff);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.12);
}

.brand-mark-node {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border: 1px solid rgba(66, 133, 244, 0.35);
}

.brand-mark-node-a {
  top: 4px;
  left: 8px;
}

.brand-mark-node-b {
  bottom: 6px;
  right: 7px;
}

.company-frame {
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.company-frame::after {
  display: none;
}

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

.company-layers {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

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

.company-layer-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(66, 133, 244, 0.12);
  background: rgba(66, 133, 244, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.company-layer-desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

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

.insight-card {
  border: 1px solid var(--slate-200);
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: none;
}

.insight-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  background: rgba(66, 133, 244, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.insight-card-title.is-plain {
  margin-top: 14px;
}

.insight-card-desc {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.95;
}

.partnership-shell {
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.partnership-copy {
  max-width: 46rem;
}

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

.partnership-grid-wide {
  margin-top: 0;
}

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

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

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

.manifesto-card {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  padding: 22px;
}

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

.manifesto-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.manifesto-list div {
  position: relative;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: #ffffff;
  padding: 12px 14px 12px 12px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

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

.capability-grid,
.services-shell {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.capability-card h3,
.pillar-card h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.capability-card p,
.pillar-card p {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.95;
}

.contact-summary-card {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.contact-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  padding-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}

.contact-summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-summary-row strong {
  color: var(--ink);
  text-align: left;
  font-size: 12px;
}

.hero-visual {
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.hero-graphic {
  min-height: 220px;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-graphic-soft {
  min-height: 220px;
}

.hero-graphic-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-graphic-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-chip-stack {
  display: grid;
  gap: 10px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--ink);
}

.hero-chip-wide {
  min-height: 52px;
}

.hero-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.08);
  border: 1px solid rgba(66, 133, 244, 0.12);
}

.footer-shell {
  display: grid;
  gap: 16px;
  align-items: center;
}

@media (max-width: 1023px) {
  .hero-section {
    min-height: auto;
  }
}

.page-copy {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
}

.page-copy p:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .footer-shell {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
  }
}

/* Home 2026 */
.home-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(66, 133, 244, 0.15), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(52, 168, 83, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-hero-copy {
  grid-column: span 7;
  min-width: 0;
  padding-block: 0.5rem 3rem;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #285cb8;
  font-size: 13px;
  font-weight: 700;
}

.home-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(66, 133, 244, 0.12);
}

.home-hero-title {
  max-width: 13ch;
  margin: 1.25rem 0 0;
  font-size: clamp(2.25rem, 4vw, 2.875rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #0b1325;
}

.home-hero-title span {
  display: block;
  color: var(--primary);
}

.home-hero-lead {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.6rem;
}

.home-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 0.65rem 1.2rem;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-button svg,
.home-text-link svg {
  width: 18px;
  height: 18px;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button-primary {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 12px 28px rgba(66, 133, 244, 0.2);
}

.home-button-primary:hover {
  box-shadow: 0 16px 34px rgba(66, 133, 244, 0.28);
}

.home-button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.34);
  backdrop-filter: blur(12px);
}

.home-hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 1.75rem;
  color: #64748b;
  font-size: 12px;
}

.home-hero-capabilities span {
  position: relative;
  padding-right: 14px;
}

.home-hero-capabilities span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #94a3b8;
  transform: translateY(-50%);
}

.home-hero-art {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  padding: 0.5rem 1.25rem 3.5rem 0;
}

.home-hero-photo {
  position: relative;
  height: clamp(360px, 44vw, 460px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 28px;
  background: #dbeafe;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  box-shadow: 12px 14px 0 rgba(232, 240, 252, 0.9), 0 24px 56px rgba(15, 23, 42, 0.12);
}

.home-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 13, 31, 0.62), transparent 42%);
  pointer-events: none;
}

.home-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.home-photo-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.home-photo-caption-icon,
.home-orbit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.home-photo-caption-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.home-photo-caption-icon svg {
  width: 20px;
  height: 20px;
}

.home-photo-caption strong,
.home-photo-caption small {
  display: block;
}

.home-photo-caption strong {
  font-size: 13px;
}

.home-photo-caption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.home-orbit-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 700;
}

.home-orbit-card-top {
  top: 2.75rem;
  right: -1.2rem;
}

.home-orbit-card-bottom {
  bottom: 5rem;
  left: -1.2rem;
}

.home-orbit-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.1);
}

.home-orbit-icon svg {
  width: 17px;
  height: 17px;
}

.home-service-rail {
  position: relative;
  z-index: 4;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -1px;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 18px;
  background: transparent;
}

.home-service-rail a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 1rem 1.15rem;
  border-left: 1px solid var(--slate-200);
  transition: color 0.25s ease;
}

.home-service-rail a:last-child {
  border-left: 0;
}

.home-service-rail a:hover {
  color: var(--primary);
}

.home-service-rail strong,
.home-service-rail small {
  display: block;
}

.home-service-rail strong {
  font-size: 13px;
  color: var(--ink);
}

.home-service-rail small {
  margin-top: 5px;
  color: #64748b;
  font-size: 10px;
}

.home-rail-index {
  color: rgba(66, 133, 244, 0.52);
  font-size: 11px;
  font-weight: 700;
  direction: ltr;
}

.home-section {
  padding: clamp(4rem, 6vw, 5.5rem) 0;
}

.home-intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 82%, rgba(66, 133, 244, 0.09), transparent 25%),
    #ffffff;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
}

.home-section-heading {
  grid-column: span 7;
}

.home-section-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.home-section-heading h2,
.home-services-head h2,
.home-process-head h2,
.home-collaboration-copy h2,
.home-final-cta h2 {
  margin: 0.9rem 0 0;
  letter-spacing: -0.025em;
  color: #0b1325;
}

.home-section-heading h2 {
  max-width: 15ch;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.35;
}

.home-intro-body {
  grid-column: span 5;
}

.home-intro-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.1;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(112px, auto));
  gap: 14px;
  margin-top: clamp(2.75rem, 4vw, 4rem);
  border-top: 0;
}

.home-principle {
  position: relative;
  display: flex;
  gap: 14px;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid #dbe4f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.045);
}

.home-principle:first-child {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 238px;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  border-color: #173a73;
  background:
    radial-gradient(circle at 18% 18%, rgba(86, 151, 255, 0.55), transparent 32%),
    linear-gradient(145deg, #0c1930, #173a73);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(15, 41, 82, 0.16);
}

.home-principle:first-child::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -96px;
  left: -70px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035), 0 0 0 56px rgba(255, 255, 255, 0.02);
}

.home-principle:nth-child(2),
.home-principle:nth-child(3) {
  grid-column: span 7;
  align-items: center;
  min-height: 112px;
}

.home-principle:nth-child(2) {
  border-radius: 20px;
}

.home-principle:nth-child(3) {
  border-radius: 20px;
}

.home-principle-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary);
  background: #eef5ff;
}

.home-principle:first-child .home-principle-icon {
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-principle-icon svg {
  width: 16px;
  height: 16px;
}

.home-principle h3 {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--ink);
}

.home-principle:first-child h3 {
  color: #ffffff;
  font-size: 17px;
}

.home-principle p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.home-principle:first-child p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.68);
}

.home-services {
  background: linear-gradient(180deg, #f7f9fc 0%, #f3f7fc 100%);
}

.home-services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #cbd5e1;
}

.home-services-head > .home-text-link {
  display: none;
}

.home-service-catalog {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: 2.5rem;
}

.home-service-manifesto {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  color: #ffffff;
  border-radius: 24px;
  background: #0c1930;
  box-shadow: 0 22px 48px rgba(15, 41, 82, 0.12);
}

.home-service-manifesto::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -90px;
  bottom: -100px;
  border: 1px solid rgba(142, 188, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 0 0 34px rgba(66, 133, 244, 0.05), 0 0 0 68px rgba(66, 133, 244, 0.035);
}

.home-service-word {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-service-manifesto > div {
  position: relative;
  z-index: 1;
}

.home-service-manifesto p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 2;
}

.home-service-manifesto .home-text-link {
  color: #8ebcff;
}

.home-service-index {
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.home-service-row {
  display: grid;
  grid-template-columns: 36px 42px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 112px;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #cbd5e1;
  transition: padding 0.25s ease, border-color 0.25s ease;
}

.home-service-row:hover {
  padding-right: 1.45rem;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
}

.home-service-row-number {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  direction: ltr;
}

.home-service-row-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe4f0;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.home-service-row-icon svg {
  width: 17px;
  height: 17px;
}

.home-service-row small {
  color: var(--primary);
  font-size: 10px;
}

.home-service-row h3 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-size: 16px;
}

.home-service-row p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.home-services-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.home-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 14px;
  margin-top: 2.5rem;
}

.home-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 20px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 133, 244, 0.28);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.home-bento-featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 394px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 153, 255, 0.5), transparent 32%),
    linear-gradient(145deg, #0b1730 0%, #102d5b 100%);
  border-color: rgba(51, 65, 85, 0.5);
}

.home-bento-support,
.home-bento-content {
  grid-column: span 5;
}

.home-bento-ads,
.home-bento-media {
  grid-column: span 6;
}

.home-bento-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.home-bento-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--primary);
  background: #eef5ff;
}

.home-bento-icon svg {
  width: 20px;
  height: 20px;
}

.home-bento-featured .home-bento-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-bento-number {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  direction: ltr;
}

.home-bento-featured .home-bento-number {
  color: rgba(255, 255, 255, 0.46);
}

.home-bento-copy {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
}

.home-bento-tag {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
}

.home-bento-copy h3 {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.home-bento-copy p {
  max-width: 44ch;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}

.home-bento-featured .home-bento-tag {
  color: #8ebcff;
}

.home-bento-featured .home-bento-copy h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.home-bento-featured .home-bento-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.home-browser-mock {
  position: absolute;
  left: -2rem;
  bottom: -2.2rem;
  width: 52%;
  aspect-ratio: 1.3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  transform: rotate(-4deg);
}

.home-browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.home-browser-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.home-browser-body span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.home-browser-body span:nth-child(1) { width: 56%; }
.home-browser-body span:nth-child(2) { width: 82%; }
.home-browser-body span:nth-child(3) { width: 68%; }

.home-process {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    #091426;
  background-size: calc(25% - 1px) 100%;
}

.home-process-glow {
  display: none;
}

.home-process-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: 2rem;
  align-items: end;
}

.home-section-label-light {
  color: #8ebcff;
}

.home-process-head h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.35;
}

.home-process-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.9;
}

.home-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.home-process-step {
  position: relative;
  min-height: 160px;
  padding: 1.65rem 1.15rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.home-process-step:hover {
  background: rgba(66, 133, 244, 0.075);
}

.home-process-step:last-child {
  border-left: 0;
  border-radius: 20px 0 0 20px;
}

.home-process-step:first-child {
  border-radius: 0 20px 20px 0;
}

.home-process-step::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 1.25rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(66, 133, 244, 0.16);
}

.home-process-step > span {
  color: rgba(142, 188, 255, 0.52);
  font-size: 18px;
  font-weight: 700;
  direction: ltr;
}

.home-process-step h3 {
  margin: 0.9rem 0 0;
  color: #ffffff;
  font-size: 15px;
}

.home-process-step p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.9;
}

.home-collaboration {
  background: #ffffff;
}

.home-collaboration-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.65fr) minmax(230px, 0.75fr);
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid #dbe4f0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.92), #ffffff);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.055);
}

.home-collaboration-copy h2 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.4;
}

.home-collaboration-copy p {
  max-width: 56ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

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

.home-collaboration-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 12px;
}

.home-collaboration-media {
  position: relative;
  height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #dbeafe;
  box-shadow: 10px 12px 0 rgba(232, 240, 252, 0.86);
}

.home-collaboration-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 34, 0.72), transparent 58%);
}

.home-collaboration-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.home-collaboration-media:hover img {
  transform: scale(1.04);
}

.home-collaboration-media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #ffffff;
}

.home-collaboration-media figcaption span,
.home-collaboration-media figcaption strong {
  display: block;
}

.home-collaboration-media figcaption span {
  color: #9bc3ff;
  font-size: 10px;
}

.home-collaboration-media figcaption strong {
  margin-top: 5px;
  font-size: 14px;
}

.home-collaboration-list span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(66, 133, 244, 0.1);
}

.home-collaboration-list svg {
  width: 17px;
  height: 17px;
}

.home-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--slate-200);
}

.home-final-cta > div > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.home-final-cta h2 {
  max-width: 26ch;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.35;
}

@media (max-width: 1023px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy,
  .home-hero-art {
    grid-column: auto;
  }

  .home-hero-copy {
    padding-bottom: 1rem;
  }

  .home-hero-title {
    max-width: 12ch;
  }

  .home-hero-art {
    width: min(620px, 100%);
    margin-inline: auto;
    padding-right: 1.25rem;
  }

  .home-service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-rail a:nth-child(2) {
    border-left: 0;
  }

  .home-service-rail a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--slate-200);
  }

  .home-intro-grid,
  .home-process-head {
    grid-template-columns: 1fr;
  }

  .home-section-heading,
  .home-intro-body {
    grid-column: auto;
  }

  .home-intro-body {
    max-width: 62ch;
  }

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

  .home-process-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-collaboration-card {
    grid-template-columns: 1fr 1fr;
  }

  .home-collaboration-copy {
    grid-column: 1 / -1;
  }

  .home-service-catalog {
    grid-template-columns: 1fr;
  }

  .home-service-manifesto {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .home-container {
    width: min(calc(100% - 28px), 1180px);
  }

  .home-hero {
    padding-top: 4rem;
  }

  .home-hero-title {
    max-width: 14ch;
    font-size: clamp(2.1rem, 10vw, 2.6rem);
  }

  .home-hero-art {
    padding: 0 0 4.25rem;
  }

  .home-hero-photo {
    height: 360px;
    border-width: 7px;
    border-radius: 24px;
  }

  .home-orbit-card-top {
    right: -4px;
  }

  .home-orbit-card-bottom {
    left: -4px;
  }

  .home-service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px 20px 0 0;
  }

  .home-service-rail a,
  .home-service-rail a:nth-child(2) {
    min-height: 76px;
    border-left: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }

  .home-service-rail a:nth-child(2n) {
    border-left: 0;
  }

  .home-service-rail a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .home-principles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  .home-principle {
    grid-column: auto !important;
    grid-row: auto !important;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--slate-200);
  }

  .home-principle:first-child {
    min-height: 210px;
    margin-bottom: 14px;
  }

  .home-principle:last-child {
    border-bottom: 0;
  }

  .home-services-head,
  .home-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-service-manifesto {
    min-height: 240px;
    padding: 1.5rem;
  }

  .home-service-row {
    grid-template-columns: 28px 36px minmax(0, 1fr);
    min-height: 104px;
    gap: 0.75rem;
  }

  .home-service-row-icon {
    width: 34px;
    height: 34px;
  }

  .home-bento-featured,
  .home-bento-support,
  .home-bento-content,
  .home-bento-ads,
  .home-bento-media {
    grid-column: auto;
    grid-row: auto;
  }

  .home-bento-featured {
    min-height: 350px;
  }

  .home-browser-mock {
    width: 62%;
  }

  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-process-step,
  .home-process-step:nth-child(-n + 2) {
    min-height: auto;
    padding: 2rem 1.25rem;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
  }

  .home-process-step:last-child {
    border-bottom: 0;
    border-radius: 0 0 20px 20px;
  }

  .home-process-step:first-child {
    border-radius: 20px 20px 0 0;
  }

  .home-process-step::before {
    top: -5px;
  }

  .home-collaboration-card {
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .home-collaboration-media {
    height: 260px;
    order: 2;
  }

  .home-collaboration-list {
    order: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-button,
  .home-bento-card,
  .home-hero-photo {
    transition: none;
    transform: none;
  }
}

/* Internal pages 2026 */
.hero-section {
  overflow: hidden;
  min-height: clamp(34rem, 68vh, 42rem);
  padding: clamp(5.5rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6rem);
  background-color: #ffffff;
}

.hero-section.bg-grid {
  background-image:
    radial-gradient(circle at 12% 24%, rgba(66, 133, 244, 0.14), transparent 29%),
    radial-gradient(circle at 88% 8%, rgba(52, 168, 83, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%),
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

.hero-section .badge {
  border-color: rgba(66, 133, 244, 0.16);
  border-radius: 999px;
  background: rgba(238, 245, 255, 0.86);
  color: #285cb8;
}

.hero-section h1 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.7vw, 2.75rem);
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.hero-section .hero-visual {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 12px 14px 0 rgba(232, 240, 252, 0.9), 0 24px 56px rgba(15, 23, 42, 0.12);
}

.hero-section .hero-graphic {
  position: relative;
  min-height: 340px;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 28px;
}

.hero-section .hero-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(4, 13, 31, 0.48), transparent 48%);
  pointer-events: none;
}

.hero-section .hero-chip-stack,
.hero-section .hero-chip-grid {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-section .hero-chip {
  width: auto;
  min-height: 40px;
  padding: 6px 10px;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.hero-section .hero-chip-icon {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 9px;
}

.section + .section {
  border-top: 0;
}

.section-alt {
  background: linear-gradient(180deg, #f7f9fc 0%, #f3f7fc 100%);
}

.section-warm {
  background: #ffffff;
}

.footer-section.section-alt {
  background: #ffffff;
}

.capability-grid,
.services-shell,
.partnership-grid,
.contact-grid {
  gap: 14px;
}

.capability-card,
.pillar-card,
.service-card,
.partner-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border-color: #dbe4f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.capability-card,
.pillar-card,
.partner-card,
.contact-card {
  padding: 20px;
}

.capability-card:hover,
.pillar-card:hover,
.service-card:hover,
.partner-card:hover,
.contact-card:hover {
  border-color: rgba(66, 133, 244, 0.25);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.07);
}

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

.service-card {
  min-height: 158px;
  padding: 22px;
}

.section-card-icon,
.contact-card-icon {
  border: 0;
  border-radius: 13px;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(66, 133, 244, 0.09);
}

.service-tag,
.contact-card-meta {
  border-radius: 999px;
}

.section-warm .step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(66, 133, 244, 0.22), transparent 28%),
    #0b172b;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.section-warm .step-card {
  min-height: 172px;
  padding: 26px 22px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
}

.section-warm .step-card:last-child {
  border-left: 0;
}

.section-warm .step-index {
  color: #b9d3ff;
  background: rgba(66, 133, 244, 0.18);
}

.section-warm .step-title {
  color: #ffffff;
  font-size: 14px;
}

.section-warm .step-desc {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.95;
}

.form-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-color: #dbe4f0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.96), #ffffff);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.07);
}

.form-input,
.form-textarea {
  border-color: #dbe4f0;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.82);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(66, 133, 244, 0.55);
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.08);
}

.form-submit,
.cta-banner a {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(66, 133, 244, 0.18);
}

.cta-banner {
  min-height: 150px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-color: #dbe4f0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 16%, rgba(66, 133, 244, 0.1), transparent 26%),
    linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
}

@media (max-width: 1023px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4.5rem 0 4rem;
  }

  .hero-section h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .hero-section .hero-graphic {
    min-height: 300px;
    border-radius: 24px;
  }

  .hero-section .hero-visual {
    border-radius: 24px;
    box-shadow: 8px 10px 0 rgba(232, 240, 252, 0.9), 0 18px 40px rgba(15, 23, 42, 0.1);
  }

  .hero-section .hero-chip {
    font-size: 11px;
  }

  .services-shell,
  .section-warm .step-grid {
    grid-template-columns: 1fr;
  }

  .section-warm .step-card {
    min-height: auto;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section-warm .step-card:last-child {
    border-bottom: 0;
  }

  .cta-banner {
    min-height: auto;
  }
}
