/* GSM Unlocker Team — brand polish on top of Tailwind */

:root {
  --gsm-navy: #162d43;
  --gsm-navy-deep: #0b1520;
  --gsm-accent: #e85d04;
  --gsm-mint: #0ea5a0;
  --gsm-surface: #f4f7fa;
  --gsm-line: #d8e0e8;
  --gsm-radius: 14px;
  --gsm-shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.custom-logo-link img,
.custom-logo {
  max-height: 48px;
  width: auto;
}

.gsm-wrap {
  width: min(1180px, calc(100% - 2rem));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.site-main,
.entry-content,
.gsm-prose {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gsm-prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gsm-btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
}

.gsm-btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.gsm-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.gsm-badge-navy {
  background: var(--gsm-navy);
}

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

.gsm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

/* Blog card */
.gsm-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0;
}

.gsm-blog-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef4;
  text-decoration: none;
}

.gsm-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gsm-blog-card:hover .gsm-blog-card-img {
  transform: scale(1.04);
}

.gsm-blog-card-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gsm-navy), var(--gsm-navy-deep));
  color: rgba(255, 255, 255, 0.35);
  font-family: Outfit, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.gsm-blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}

.gsm-blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.55rem;
}

.gsm-blog-card-cat {
  color: var(--gsm-accent);
  font-weight: 700;
  text-decoration: none;
}

.gsm-blog-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.gsm-blog-card-title a {
  color: var(--gsm-navy-deep);
  text-decoration: none;
}

.gsm-blog-card-title a:hover {
  color: var(--gsm-accent);
}

.gsm-blog-card-excerpt {
  margin: 0.55rem 0 0;
  flex: 1;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.gsm-blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.gsm-blog-card-author {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Single article */
.gsm-article-hero {
  background: var(--gsm-surface);
  border-bottom: 1px solid var(--gsm-line);
  padding: 2rem 0 2.25rem;
}

.gsm-article-narrow {
  max-width: 46rem;
}

.gsm-article-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.gsm-article-cats a {
  text-decoration: none;
}

.gsm-article-title {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gsm-navy-deep);
}

.gsm-article-meta {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.gsm-article-meta a {
  color: var(--gsm-navy);
  font-weight: 700;
  text-decoration: none;
}

.gsm-article-meta a:hover {
  color: var(--gsm-accent);
}

.gsm-article-body {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.gsm-article-featured {
  margin: 0 0 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--gsm-shadow);
}

.gsm-article-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.gsm-article-section {
  margin-top: 2.5rem;
}

.gsm-article-section-title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gsm-navy-deep);
}

.gsm-article-section-title--lg {
  font-family: Outfit, sans-serif;
  font-size: 1.55rem;
}

.gsm-article-related {
  margin-top: 3.25rem;
}

.gsm-article-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gsm-line);
}

.gsm-article-tags-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.gsm-article-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gsm-tag-chip {
  display: inline-flex;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--gsm-surface);
  color: var(--gsm-navy);
  border: 1px solid var(--gsm-line);
}

.gsm-tag-chip:hover {
  border-color: var(--gsm-accent);
  color: var(--gsm-accent);
}

.gsm-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gsm-post-nav-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--gsm-radius);
  border: 1px solid var(--gsm-line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--gsm-shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.gsm-post-nav-link:hover {
  border-color: rgba(232, 93, 4, 0.45);
  transform: translateY(-1px);
}

.gsm-post-nav-link--next {
  text-align: right;
}

.gsm-post-nav-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.gsm-post-nav-title {
  display: block;
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--gsm-navy-deep);
  line-height: 1.35;
}

.gsm-article-comments {
  margin-top: 3rem;
}

.gsm-article-back {
  margin-top: 2.5rem;
  text-align: center;
}

/* Share / author / unlock CTA */
.gsm-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--gsm-radius);
  background: var(--gsm-surface);
  border: 1px solid var(--gsm-line);
}

.gsm-share-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #64748b;
}

.gsm-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gsm-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--gsm-line);
  background: #fff;
  color: var(--gsm-navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.gsm-share-btn:hover {
  border-color: var(--gsm-navy);
}

.gsm-share-btn--wa {
  background: var(--gsm-mint);
  border-color: var(--gsm-mint);
  color: #fff;
}

.gsm-share-btn--wa:hover {
  background: #0d9488;
  border-color: #0d9488;
  color: #fff;
}

.gsm-author-bio {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2.25rem;
  padding: 1.25rem;
  border-radius: var(--gsm-radius);
  border: 1px solid var(--gsm-line);
  background: var(--gsm-surface);
}

.gsm-author-avatar {
  border-radius: 999px;
  flex-shrink: 0;
}

.gsm-author-bio-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.gsm-author-bio-name {
  margin: 0.35rem 0 0;
  font-weight: 800;
  color: var(--gsm-navy-deep);
}

.gsm-author-bio-name a {
  color: inherit;
  text-decoration: none;
}

.gsm-author-bio-name a:hover {
  color: var(--gsm-accent);
}

.gsm-author-bio-text {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
}

.gsm-unlock-cta {
  margin-top: 2.25rem;
  padding: 1.5rem 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--gsm-navy-deep), var(--gsm-navy));
  color: #fff;
}

.gsm-unlock-cta-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}

.gsm-unlock-cta-title {
  margin: 0.45rem 0 0;
  font-family: Outfit, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.gsm-unlock-cta-text {
  margin: 0.55rem 0 0;
  max-width: 36rem;
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.gsm-unlock-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

/* Header shell */
.gsm-header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  padding: 0.85rem 0;
}

.gsm-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.gsm-header-search {
  flex: 1 1 16rem;
  max-width: 34rem;
  min-width: 0;
}

.gsm-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
}

.gsm-hero-title {
  margin: 0;
  max-width: 36rem;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gsm-hero-text {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.gsm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.gsm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gsm-section {
  padding: 3.25rem 0;
}

.gsm-comments .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gsm-comments .comment {
  padding: 1rem;
  border: 1px solid var(--gsm-line);
  border-radius: var(--gsm-radius);
  background: #fff;
}

.gsm-comments .children {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--gsm-line);
}

.gsm-logo-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #e85d04, #f48c06 45%, #0ea5a0);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(232, 93, 4, 0.28);
}

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

.gsm-primary-nav {
  background: var(--gsm-navy);
  color: #fff;
}

.gsm-nav-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.gsm-hamb {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0.65rem 0;
  padding: 0.55rem 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.55rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
}

.gsm-hamb:hover,
.gsm-hamb[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.gsm-nav-panel {
  width: 100%;
}

.gsm-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gsm-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.95rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  border-bottom: 3px solid transparent;
}

.gsm-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gsm-nav .current-menu-item > a,
.gsm-nav .current_page_item > a,
.gsm-nav .current-menu-ancestor > a,
.gsm-nav .current-menu-parent > a,
.gsm-nav li.is-active > a,
.gsm-nav a[aria-current="page"] {
  background: rgba(232, 93, 4, 0.22);
  color: #fff;
  border-bottom-color: var(--gsm-accent);
  box-shadow: inset 0 -1px 0 rgba(232, 93, 4, 0.35);
}

.gsm-search {
  display: flex;
  align-items: stretch;
  flex: 1;
  max-width: 34rem;
  border: 1.5px solid var(--gsm-line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.gsm-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  background: transparent;
}

.gsm-search button {
  border: 0;
  background: var(--gsm-navy);
  color: #fff;
  padding: 0 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.gsm-search button:hover {
  background: #1e3a54;
}

.gsm-card {
  background: #fff;
  border: 1px solid var(--gsm-line);
  border-radius: var(--gsm-radius);
  box-shadow: var(--gsm-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gsm-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.12);
}

.gsm-folder-icon,
.gsm-file-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.gsm-folder-icon {
  background: linear-gradient(160deg, #fff8e8 0%, #f3e2b0 100%);
  color: #c98900;
}

.gsm-file-icon {
  background: linear-gradient(160deg, #eef4fa 0%, #d7e3ef 100%);
  color: #162d43;
}

.gsm-icon-svg {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
}

.gsm-icon-has-image {
  background: #fff !important;
  padding: 0.2rem;
}

.gsm-icon-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.65rem;
}

.gsm-card-chevron {
  color: var(--gsm-accent);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  opacity: 0.85;
}

.gsm-folder-card:hover .gsm-card-chevron {
  transform: translateX(2px);
  transition: transform 0.15s ease;
}

/* Browse by momentum — Top / Recent lists */
.gsm-momentum {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.gsm-momentum-card {
  background: #fff;
  border: 1px solid var(--gsm-line);
  border-radius: var(--gsm-radius);
  box-shadow: var(--gsm-shadow);
  overflow: hidden;
}

.gsm-momentum-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #fff;
}

.gsm-momentum-head--top {
  background: linear-gradient(105deg, #e85d04 0%, #f48c06 55%, #ffba08 100%);
}

.gsm-momentum-head--recent {
  background: linear-gradient(105deg, #0f766e 0%, #0d9488 55%, #14b8a6 100%);
}

.gsm-momentum-head-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.gsm-momentum-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.gsm-momentum-list > li + li .gsm-momentum-row {
  border-top: 1px solid #eef2f6;
}

.gsm-momentum-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  color: var(--gsm-navy-deep);
  transition: background 0.15s ease;
}

.gsm-momentum-row:hover {
  background: #f8fafc;
}

.gsm-momentum-card:first-child .gsm-momentum-row:hover {
  background: #fff7ed;
}

.gsm-momentum-card:last-child .gsm-momentum-row:hover {
  background: #f0fdfa;
}

.gsm-momentum-rank {
  flex-shrink: 0;
  min-width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: #fff4e8;
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 0.05rem;
}

.gsm-momentum-file-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: #eef6f5;
  color: #0f766e;
  margin-top: 0.05rem;
}

.gsm-momentum-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gsm-momentum-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--gsm-navy-deep);
}

.gsm-momentum-row:hover .gsm-momentum-title {
  color: var(--gsm-accent);
}

.gsm-momentum-card:last-child .gsm-momentum-row:hover .gsm-momentum-title {
  color: #0f766e;
}

.gsm-momentum-meta {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.3;
}

.gsm-momentum-date {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  padding-top: 0.2rem;
  padding-left: 0.5rem;
}

.gsm-momentum-empty {
  margin: 0;
  padding: 1.5rem 1.35rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .gsm-momentum {
    grid-template-columns: 1fr;
  }
}

.gsm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.gsm-btn:hover {
  transform: translateY(-1px);
}

.gsm-btn-primary {
  background: var(--gsm-navy);
  color: #fff;
}

.gsm-btn-primary:hover {
  background: #1e3a54;
  color: #fff;
}

.gsm-btn-accent {
  background: var(--gsm-accent);
  color: #fff;
}

.gsm-btn-accent:hover {
  background: #f48c06;
  color: #fff;
}

.gsm-btn-mint {
  background: var(--gsm-mint);
  color: #fff;
}

.gsm-btn-mint:hover {
  background: #0d9488;
  color: #fff;
}

.gsm-btn-ghost {
  background: transparent;
  color: var(--gsm-navy);
  border: 1.5px solid var(--gsm-line);
}

.gsm-btn-ghost:hover {
  border-color: var(--gsm-navy);
  color: var(--gsm-navy);
}

.gsm-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--gsm-mint);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gsm-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 93, 4, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(14, 165, 160, 0.18), transparent 50%),
    linear-gradient(160deg, #0b1520 0%, #162d43 55%, #1e3a54 100%);
  color: #fff;
}

.gsm-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.gsm-section-label {
  color: var(--gsm-accent);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gsm-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #64748b;
}

.gsm-breadcrumb a {
  color: var(--gsm-navy);
  text-decoration: none;
  font-weight: 600;
}

.gsm-breadcrumb a:hover {
  color: var(--gsm-accent);
}

.gsm-meta-table {
  width: min(100%, 28rem);
  margin-inline: auto;
}

.gsm-meta-table dt,
.gsm-meta-table dd {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gsm-line);
  margin: 0;
}

.gsm-meta-table dt {
  font-weight: 600;
  color: #64748b;
}

.gsm-meta-table dd {
  font-weight: 700;
  color: var(--gsm-navy-deep);
}

.gsm-file-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gsm-file-list .gsm-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.gsm-file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.gsm-folder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.gsm-view-toggle .is-active {
  background: var(--gsm-navy);
  color: #fff;
  border-color: var(--gsm-navy);
}

.site-footer {
  background: var(--gsm-navy-deep);
  color: #cbd5e1;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.gsm-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--gsm-navy);
}

.gsm-form .required {
  color: #dc2626;
}

.gsm-form input,
.gsm-form textarea,
.gsm-form select {
  width: 100%;
  border: 1.5px solid var(--gsm-line);
  border-radius: 0.7rem;
  padding: 0.8rem 0.95rem;
  background: var(--gsm-surface);
  font: inherit;
  outline: 0;
}

.gsm-form input:focus,
.gsm-form textarea:focus {
  border-color: var(--gsm-navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 45, 67, 0.12);
}

.gsm-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .gsm-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form 7 — match theme form look */
.gsm-cf7 .wpcf7 {
  margin: 0;
}

.gsm-cf7 .wpcf7-form > p,
.gsm-cf7 .wpcf7-form label {
  display: block;
  margin: 0 0 1.15rem;
}

.gsm-cf7 .wpcf7-form label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gsm-navy);
}

.gsm-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.4rem;
}

.gsm-cf7 .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  border: 1.5px solid var(--gsm-line);
  border-radius: 0.7rem;
  padding: 0.8rem 0.95rem;
  background: var(--gsm-surface);
  font: inherit;
  outline: 0;
  box-sizing: border-box;
}

.gsm-cf7 textarea.wpcf7-form-control {
  min-height: 9rem;
  resize: vertical;
}

.gsm-cf7 .wpcf7-form-control:focus {
  border-color: var(--gsm-navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 45, 67, 0.12);
}

.gsm-cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--gsm-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.gsm-cf7 .wpcf7-submit:hover {
  background: #1e3a54;
  transform: translateY(-1px);
}

.gsm-cf7 .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.gsm-cf7 .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.gsm-cf7 .wpcf7-mail-sent-ok,
.gsm-cf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.gsm-cf7 .wpcf7-validation-errors,
.gsm-cf7 .wpcf7-mail-sent-ng,
.gsm-cf7 form.failed .wpcf7-response-output,
.gsm-cf7 form.invalid .wpcf7-response-output {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.gsm-cf7 .wpcf7-spinner {
  margin-left: 0.75rem;
}

.gsm-alert {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.gsm-alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.gsm-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.gsm-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--gsm-line);
  border-radius: var(--gsm-radius);
  background: var(--gsm-surface);
  color: #64748b;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Blog prose */
.gsm-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.gsm-prose > *:first-child {
  margin-top: 0;
}

.gsm-prose h2,
.gsm-prose h3,
.gsm-prose h4 {
  color: var(--gsm-navy-deep);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.75em 0 0.6em;
}

.gsm-prose h2 {
  font-size: 1.45rem;
}

.gsm-prose h3 {
  font-size: 1.2rem;
}

.gsm-prose p,
.gsm-prose ul,
.gsm-prose ol {
  margin: 0 0 1.15em;
}

.gsm-prose ul,
.gsm-prose ol {
  padding-left: 1.25rem;
}

.gsm-prose li + li {
  margin-top: 0.35rem;
}

.gsm-prose a {
  color: var(--gsm-accent);
  font-weight: 600;
}

.gsm-prose img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  margin: 1.25rem 0;
}

.gsm-prose pre,
.gsm-prose code {
  overflow-x: auto;
  max-width: 100%;
}

.gsm-prose pre {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #0b1520;
  color: #e2e8f0;
  font-size: 0.88rem;
}

.gsm-prose blockquote {
  margin: 1.5em 0;
  padding: 0.85em 1.15em;
  border-left: 4px solid var(--gsm-accent);
  background: var(--gsm-surface);
  color: var(--gsm-navy);
  font-weight: 500;
}

.gsm-prose .page-links {
  margin-top: 1.5rem;
  font-weight: 700;
}

.gsm-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.gsm-pagination .page-numbers a,
.gsm-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  border: 1.5px solid var(--gsm-line);
  background: #fff;
  color: var(--gsm-navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.gsm-pagination .page-numbers .current,
.gsm-pagination .page-numbers a:hover {
  background: var(--gsm-navy);
  border-color: var(--gsm-navy);
  color: #fff;
}

.gsm-comments .comment-respond {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--gsm-line);
  border-radius: var(--gsm-radius);
  background: var(--gsm-surface);
}

.gsm-comments .children {
  list-style: none;
  margin: 1rem 0 0 1.25rem;
  padding: 0;
}

.gsm-comments .reply a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gsm-navy);
  text-decoration: none;
}

.gsm-comments .reply a:hover {
  color: var(--gsm-accent);
}

/* Top bar — original, not a grey clone strip */
.gsm-topbar {
  border-bottom: 1px solid var(--gsm-line);
}

.gsm-topbar-quote {
  background: linear-gradient(90deg, #fff7ed 0%, #f0fdfa 50%, #eff6ff 100%);
  border-bottom: 1px solid rgba(232, 93, 4, 0.12);
}

.gsm-topbar-quote p {
  padding: 0.55rem 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 650;
  color: #334155;
  letter-spacing: 0.01em;
}

.gsm-topbar-meta {
  background: #fff;
}

.gsm-topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0;
}

.gsm-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.gsm-socials-hint {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.gsm-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.gsm-social-chip {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  text-decoration: none;
  color: #fff;
  background: var(--gsm-navy);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.gsm-social-chip svg {
  display: block;
}

.gsm-social-chip:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.gsm-social-whatsapp { background: #128c7e; }
.gsm-social-telegram { background: #229ed9; }
.gsm-social-facebook { background: #1877f2; }
.gsm-social-twitter { background: #111827; }
.gsm-social-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); }
.gsm-social-linkedin { background: #0a66c2; }
.gsm-social-youtube { background: #ff0000; }

.gsm-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--gsm-surface);
  border: 1px solid var(--gsm-line);
  color: var(--gsm-navy);
  font-weight: 700;
  font-size: 0.78rem;
}

.gsm-lang-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gsm-mint);
  box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.2);
}

.gsm-topbar-link {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gsm-accent);
  text-decoration: none;
}

.gsm-topbar-link:hover {
  text-decoration: underline;
}

/* Recent / Top pulse board — not white bars on navy */
.gsm-pulse {
  background: #f8fafc;
  border-bottom: 1px solid var(--gsm-line);
  overflow: hidden;
}

.gsm-pulse-board {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.gsm-pulse-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 3rem;
  min-width: 0;
}

.gsm-pulse-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.gsm-pulse-label--recent {
  background: linear-gradient(135deg, #0ea5a0, #0f766e);
}

.gsm-pulse-label--top {
  background: linear-gradient(135deg, #e85d04, #f48c06);
}

.gsm-pulse-icon {
  display: grid;
  place-items: center;
}

.gsm-pulse-track {
  overflow: hidden;
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gsm-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gsm-pulse-track-inner {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  padding: 0.4rem 0.6rem;
  animation: gsm-marquee 42s linear infinite;
}

.gsm-pulse-track-inner--reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}

.gsm-pulse-track:hover .gsm-pulse-track-inner {
  animation-play-state: paused;
}

.gsm-pulse-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 22rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--gsm-surface);
  border: 1px solid transparent;
  color: var(--gsm-navy-deep);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.gsm-pulse-chip:hover {
  border-color: rgba(232, 93, 4, 0.35);
  background: #fff7ed;
  color: var(--gsm-accent);
}

.gsm-pulse-chip-count {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gsm-mint);
}

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

@media (max-width: 1100px) {
  /* Tablet / narrow desktop: hamburger instead of wrapping nav */
  .gsm-hamb {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
  }

  .gsm-hamb::after {
    content: "☰";
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.9;
  }

  .gsm-hamb[aria-expanded="true"]::after {
    content: "✕";
    font-size: 0.95rem;
  }

  .gsm-nav-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .gsm-nav-panel {
    display: none;
    width: 100%;
    padding: 0 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gsm-nav-panel.is-open {
    display: block;
  }

  .gsm-nav-list {
    flex-direction: column;
    width: 100%;
    flex-wrap: nowrap;
  }

  .gsm-nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gsm-nav-list > li:last-child {
    border-bottom: 0;
  }

  .gsm-nav a {
    width: 100%;
    padding: 0.95rem 0.35rem;
    border-bottom: 0;
    box-sizing: border-box;
  }

  .gsm-nav .current-menu-item > a,
  .gsm-nav .current_page_item > a,
  .gsm-nav a[aria-current="page"] {
    border-left: 3px solid var(--gsm-accent);
    border-bottom-color: transparent;
    padding-left: 0.75rem;
    box-shadow: none;
  }

  .gsm-header-bar {
    gap: 0.75rem;
  }

  .gsm-header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .gsm-header-actions .gsm-btn-ghost {
    display: none;
  }

  .gsm-pulse-row {
    grid-template-columns: 6.75rem minmax(0, 1fr);
    gap: 0.55rem;
  }

  .gsm-pulse-label {
    font-size: 0.72rem;
    padding: 0.5rem 0.6rem;
  }
}

@media (max-width: 720px) {
  .gsm-pulse-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .gsm-pulse-label {
    width: fit-content;
  }

  .gsm-topbar-quote p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

@media (max-width: 1024px) {
  .gsm-folder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .gsm-momentum {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .gsm-wrap {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .gsm-folder-grid,
  .gsm-file-grid,
  .gsm-file-grid--2,
  .gsm-blog-grid,
  .gsm-services-grid {
    grid-template-columns: 1fr;
  }

  .gsm-hero-inner {
    padding: 2.5rem 0;
  }

  .gsm-section {
    padding: 2.35rem 0;
  }

  .gsm-article-hero {
    padding: 1.5rem 0 1.75rem;
  }

  .gsm-article-body {
    padding-top: 1.5rem;
  }

  .gsm-post-nav {
    grid-template-columns: 1fr;
  }

  .gsm-post-nav-link--next {
    text-align: left;
  }

  .gsm-post-nav-spacer {
    display: none;
  }

  .gsm-author-bio {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsm-unlock-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gsm-unlock-cta-actions .gsm-btn {
    width: 100%;
  }

  .gsm-share-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .gsm-blog-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsm-topbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsm-meta-table {
    width: 100%;
  }

  .gsm-folder-card {
    padding: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .gsm-btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .gsm-prose {
    font-size: 1rem;
  }

  .gsm-article-meta {
    gap: 0.25rem 0.75rem;
    font-size: 0.82rem;
  }
}
