/*
Theme Name: BL Global
Theme URI: https://blglobal.hk/
Author: BL Global
Author URI: https://blglobal.hk/
Description: A lightweight SEO-focused WordPress theme for BL Global, a Hong Kong licensed company secretary and compliance services firm.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blglobal
Tags: custom-logo, featured-images, full-width-template, blog, business, translation-ready
*/

:root {
  --navy-950: #061a30;
  --navy-900: #08233d;
  --navy: #0b2e4f;
  --navy-700: #143c61;
  --gold-700: #a88a47;
  --gold-600: #b8964c;
  --gold: #c9a961;
  --gold-50: #faf5e8;
  --ink: #0f1b2d;
  --ink-muted: #5b6b7c;
  --ink-faint: #8a98a6;
  --paper: #f8fafb;
  --paper-200: #eef2f5;
  --hair: #e2e8ee;
  --white: #fff;
  --teal: #00b4a6;
  --teal-50: #e6f7f5;
  --green: #25d366;
  --shadow-soft: 0 1px 2px rgba(11, 46, 79, .04), 0 4px 16px rgba(11, 46, 79, .06);
  --shadow-lift: 0 2px 4px rgba(11, 46, 79, .06), 0 12px 32px rgba(11, 46, 79, .10);
  --radius-card: 12px;
  --radius-btn: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 7vw, 96px);
}

.section-tight {
  padding-block: clamp(44px, 5vw, 68px);
}

.bg-paper {
  background: var(--paper);
}

.border-y {
  border-block: 1px solid var(--hair);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.heading-xl {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Inter, system-ui, sans-serif;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 650;
}

.heading-lg {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Inter, system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 650;
}

.heading-md {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.28;
  font-weight: 650;
}

.serif {
  font-family: "Noto Serif TC", Georgia, serif;
  font-weight: 500;
}

.lead {
  color: var(--ink-muted);
  font-size: 16.5px;
  line-height: 1.8;
}

.muted {
  color: var(--ink-muted);
}

.faint {
  color: var(--ink-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-900);
}

.btn-gold {
  color: var(--navy-900);
  background: var(--gold);
}

.btn-gold:hover {
  color: var(--white);
  background: var(--gold-600);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--hair);
}

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

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .15);
}

.btn-light:hover {
  background: rgba(255, 255, 255, .18);
}

.card {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.card-flat {
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.card-hover {
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.card-hover:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
}

.grid-hair {
  background-image:
    linear-gradient(rgba(11, 46, 79, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 46, 79, .06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.ph-stripe {
  background-image: repeating-linear-gradient(135deg, #eef2f5 0 12px, #f8fafb 12px 24px);
}

.ph-stripe-navy {
  background:
    linear-gradient(135deg, rgba(11, 46, 79, .12), rgba(201, 169, 97, .08)),
    repeating-linear-gradient(135deg, #eef2f5 0 12px, #f8fafb 12px 24px);
}

.ph-stripe-gold {
  background-image: repeating-linear-gradient(135deg, rgba(201, 169, 97, .13) 0 12px, rgba(250, 245, 232, .72) 12px 24px);
}

.ph-stripe-teal {
  background-image: repeating-linear-gradient(135deg, rgba(0, 180, 166, .10) 0 12px, rgba(0, 180, 166, .03) 12px 24px);
}

.topbar {
  display: none;
  color: rgba(255, 255, 255, .72);
  background: var(--navy-950);
  font-size: 12px;
}

.topbar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .18s ease, background-color .18s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(11, 46, 79, .06), 0 8px 24px rgba(11, 46, 79, .06);
}

.site-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.brand-sub {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 10.5px;
  letter-spacing: .04em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
}

.desktop-nav a:hover,
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
  color: var(--navy);
  background: var(--paper);
}

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

.header-actions .btn-whatsapp {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--hair);
  background: var(--white);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer-inner {
  padding-block: 14px 22px;
}

.mobile-drawer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-drawer a {
  display: block;
  padding: 12px 4px;
  color: var(--navy);
  border-bottom: 1px solid var(--hair);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .50;
  background-image:
    linear-gradient(rgba(11, 46, 79, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 46, 79, .06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, .45), transparent);
}

.hero-inner {
  position: relative;
  padding-block: clamp(64px, 8vw, 112px);
  display: grid;
  gap: 48px;
}

.hero-copy {
  max-width: 650px;
}

.hero-title {
  margin-top: 28px;
}

.hero-copy .lead {
  max-width: 610px;
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 13.5px;
}

.check-dot {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-700);
  border: 1px solid rgba(201, 169, 97, .45);
  border-radius: 999px;
}

.credential-panel {
  align-self: start;
  overflow: hidden;
}

.credential-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hair);
  color: var(--ink-faint);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.credential-body {
  padding: 28px 24px;
}

.credential-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-row + .credential-row {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}

.icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(11, 46, 79, .05);
  border-radius: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.stat {
  padding: 14px 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: 26px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 11.5px;
}

.section-head {
  display: grid;
  gap: 22px;
  margin-bottom: 48px;
}

.section-head p {
  max-width: 580px;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.service-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  transition: background-color .16s ease;
}

.service-card:hover {
  background: var(--paper);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-700);
  font-size: 12.5px;
  font-weight: 650;
}

.arrow-link:hover {
  gap: 10px;
}

.solution-grid {
  display: grid;
  gap: 20px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.solution-card .visual {
  min-height: 210px;
}

.solution-card .content {
  padding: 28px;
}

.solution-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
}

.solution-card p,
.solution-card li {
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.75;
}

.why-grid {
  display: grid;
  gap: 48px;
}

.why-list {
  overflow: hidden;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.why-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--white);
}

.why-item + .why-item {
  border-top: 1px solid var(--hair);
}

.why-num {
  color: rgba(201, 169, 97, .40);
  font-family: "Noto Serif TC", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

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

details.faq-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

details.faq-item[open] {
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--paper);
  border-radius: 999px;
}

details[open] .faq-icon {
  color: var(--white);
  background: var(--navy);
}

details[open] .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.8;
}

.article-grid {
  display: grid;
  gap: 20px;
}

.post-card {
  display: block;
  overflow: hidden;
}

.post-card-visual {
  aspect-ratio: 16 / 10;
  position: relative;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: .08em;
}

.post-card-visual .tag-label {
  position: absolute;
  top: 12px;
  left: 12px;
}

.post-card-body {
  padding: 24px;
}

.post-card h3,
.post-card h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.35;
}

.post-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.75;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: 11.5px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
  background-size: 56px 56px;
}

.final-cta::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(201, 169, 97, .16);
  border-radius: 999px;
  filter: blur(52px);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.form-card {
  padding: clamp(24px, 3vw, 36px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

label.field {
  display: block;
}

.field span,
.field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-btn);
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, .16);
}

.checkbox-grid {
  display: grid;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-btn);
  cursor: pointer;
}

.choice:has(input:checked) {
  background: var(--gold-50);
  border-color: var(--gold);
}

.page-hero {
  padding-block: clamp(48px, 6vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}

.page-hero.white {
  background: var(--white);
}

.breadcrumb {
  margin-bottom: 24px;
  color: var(--ink-muted);
  font-size: 12.5px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 13.5px;
}

.price-card {
  padding: 28px;
}

.price {
  margin-top: 8px;
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 36px;
  font-weight: 750;
  letter-spacing: 0;
}

.content-layout {
  display: grid;
  gap: 48px;
}

.toc {
  display: none;
}

.toc-title {
  margin-bottom: 16px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  position: relative;
  display: block;
  padding: 6px 0 6px 14px;
  color: var(--ink-muted);
  font-size: 13.5px;
}

.toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--hair);
}

.toc a:hover,
.toc a.is-active {
  color: var(--navy);
  font-weight: 650;
}

.toc a.is-active::before {
  background: var(--gold);
}

.prose {
  max-width: 760px;
}

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

.prose h2 {
  margin: 56px 0 20px;
  color: var(--navy);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Inter, sans-serif;
  font-size: 28px;
  line-height: 1.25;
}

.prose h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.85;
}

.prose p {
  margin: 0 0 18px;
}

.prose strong {
  color: var(--ink);
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.prose th,
.prose td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--hair);
  text-align: left;
  vertical-align: top;
}

.prose th {
  color: var(--ink-muted);
  background: var(--paper);
  font-weight: 650;
}

.prose blockquote {
  margin: 34px 0;
  padding: 24px;
  color: var(--navy);
  background: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
}

.callout {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(250, 245, 232, .55);
  border: 1px solid rgba(201, 169, 97, .32);
  border-radius: var(--radius-card);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.license-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.license-card {
  padding: 24px;
  background: var(--white);
}

.contact-channels {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius-card);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  background: var(--white);
}

.contact-channel:hover {
  background: var(--paper);
}

.office-card {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.map-mock {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11, 46, 79, .12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 39%, rgba(11, 46, 79, .12) 40%, transparent 41%),
    var(--paper);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -100%);
  color: var(--navy-900);
  background: var(--gold);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
}

.site-footer {
  color: rgba(255, 255, 255, .80);
  background: var(--navy-950);
  padding-block: 72px 36px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.site-footer h4 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, .74);
  font-size: 13.5px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  color: rgba(255, 255, 255, .50);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .50);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(100%, 320px);
  padding: 28px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.modal-close:hover {
  background: var(--paper);
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  color: var(--ink-faint);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  transition: transform .15s ease;
}

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

.float-btn.whatsapp {
  background: var(--green);
  border-color: var(--green);
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 0%;
  height: 3px;
  background: var(--gold);
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
}

.page-numbers {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 10px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  color: var(--ink-muted);
}

.page-numbers.current {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.wp-block-image img {
  border-radius: var(--radius-card);
}

.alignwide {
  max-width: 1040px;
}

.alignfull {
  max-width: none;
}

@media (min-width: 640px) {
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }

  .header-actions .btn-whatsapp {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
  }

  .section-head {
    grid-template-columns: 1fr 1.25fr;
    align-items: end;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-card.featured {
    grid-row: span 2;
  }

  .why-grid {
    grid-template-columns: .85fr 1.25fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .toc {
    display: block;
  }

  .toc-inner {
    position: sticky;
    top: 112px;
  }

  .license-grid,
  .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none !important;
  }
}

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

@media (max-width: 520px) {
  .container,
  .container-wide {
    width: min(100% - 24px, var(--container));
  }

  .btn {
    width: 100%;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .why-item,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .why-num {
    width: auto;
    font-size: 34px;
  }
}
