:root {
  --navy: #10233f;
  --ink: #1d2633;
  --muted: #647184;
  --line: #dbe6f3;
  --soft: #f5f8fb;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --gold: #c6922e;
  --gold-soft: #fff0d2;
  --danger-soft: #fff4ed;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
  background: var(--white);
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-gold {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: rgba(184, 137, 44, 0.36);
}

.hero {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 35, 63, 0.97) 0%, rgba(16, 35, 63, 0.84) 40%, rgba(16, 35, 63, 0.22) 72%),
    url("hero-office.png") center / cover no-repeat;
}

.hero .container {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 640px;
  padding: 64px 0 92px;
}

.hero-content {
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #d7f4ef;
  font-size: 0.92rem;
  font-weight: 800;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  max-width: 760px;
}

.hero-lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

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

.trust-strip {
  position: relative;
  margin-top: -50px;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 112px;
  padding: 22px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.section-head p {
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card,
.price-card,
.notice,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card {
  padding: 26px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.metric {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.13);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #dff5f1;
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 950;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #334155;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  content: "✓";
}

.price-card .btn {
  margin-top: auto;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  content: counter(steps);
}

.cta-band {
  color: var(--white);
  background: var(--navy);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 56px 0;
}

.page-hero {
  padding: 72px 0;
  color: var(--white);
  background: var(--navy);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.check-panel {
  padding: 28px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion-button span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.accordion-content {
  display: none;
  padding: 0 20px 22px;
}

.accordion-item.open .accordion-content {
  display: block;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: #f8fafc;
  font-size: 0.88rem;
}

td {
  color: #334155;
}

tr:last-child td {
  border-bottom: 0;
}

.mini-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 850;
}

.notice {
  padding: 24px;
  background: #fffaf0;
}

.notice h3 {
  margin-bottom: 10px;
}

.terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.term {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.term strong {
  color: var(--navy);
}

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

.faq-wide {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-wide summary {
  padding: 22px 26px;
  font-size: 1.04rem;
}

.faq-wide p {
  padding-right: 26px;
  padding-left: 26px;
}

.faq-wide ul {
  margin-left: 46px;
  margin-right: 26px;
}

.faq-wide h3,
.faq-wide h4 {
  padding-right: 26px;
  padding-left: 26px;
}

.faq-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
}

.faq-teaser h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.faq-teaser p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq ul {
  margin: -6px 20px 18px 40px;
  padding: 0;
  color: var(--muted);
}

.faq h3,
.faq h4 {
  margin: 0;
  padding: 0 20px 10px;
  color: var(--navy);
}

.faq h3 {
  font-size: 1rem;
}

.faq h4 {
  font-size: 0.94rem;
}

.faq-browser {
  display: grid;
  gap: 22px;
}

.faq-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 4px;
}

.faq-category,
.faq-question {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.faq-category {
  padding: 10px 16px;
}

.faq-category.active {
  border-color: rgba(15, 118, 110, 0.35);
  color: var(--white);
  background: var(--teal);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.45fr);
  gap: 18px;
  align-items: start;
}

.faq-question-list,
.faq-answer-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
}

.faq-question-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.faq-question {
  width: 100%;
  padding: 17px 18px;
  border: 0;
  border-radius: 0;
  background: var(--white);
}

.faq-question.active {
  color: var(--teal-dark);
  background: #dff5f1;
}

.faq-answer-panel {
  min-height: 420px;
  padding: 30px;
}

.faq-answer-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.faq-answer {
  color: var(--muted);
  font-size: 1.04rem;
}

.faq-answer h2,
.faq-answer h3,
.faq-answer h4 {
  margin: 26px 0 12px;
}

.faq-answer p {
  margin: 0 0 18px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.faq-answer img {
  max-width: 100%;
  margin: 18px 0;
  border-radius: 8px;
}

.faq-empty,
.faq-loading {
  padding: 22px;
  color: var(--muted);
}

.admin-page {
  background: var(--soft);
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.admin-card,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.08);
}

.admin-card {
  width: min(460px, 100%);
  padding: 32px;
}

.admin-card h1,
.admin-header h1,
.admin-panel h2 {
  color: var(--navy);
}

.admin-app {
  padding: 28px;
}

.admin-header,
.admin-panel-head,
.editor-actions,
.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-header {
  margin-bottom: 22px;
}

.admin-header-actions {
  flex-wrap: wrap;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 0.9fr) minmax(380px, 1.5fr);
  gap: 18px;
}

.admin-panel {
  padding: 20px;
}

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

.admin-list-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.admin-list-row.active {
  border-color: rgba(15, 118, 110, 0.35);
  background: #f0faf8;
}

.admin-list-row input {
  min-height: 38px;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.row-actions button,
.editor-toolbar button,
.upload-button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

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

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.upload-button input {
  display: none;
}

.wysiwyg,
.html-editor {
  min-height: 280px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  overflow: auto;
}

.html-editor {
  font-family: Consolas, Monaco, monospace;
}

.wysiwyg img {
  max-width: 100%;
}

.admin-message,
#editor-status,
.admin-empty {
  color: var(--muted);
}

.form-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

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

.contact-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #0b1729;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.footer h3,
.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  margin: 7px 0;
}

.company-legal {
  margin-top: 14px;
  font-size: 0.9rem;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-links .btn {
    margin-top: 8px;
  }

  .hero,
  .hero .container {
    min-height: 620px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 35, 63, 0.98) 0%, rgba(16, 35, 63, 0.84) 64%, rgba(16, 35, 63, 0.42) 100%),
      url("hero-office.png") center / cover no-repeat;
  }

  .trust-grid,
  .grid-3,
  .grid-2,
  .process,
  .split,
  .terms,
  .faq-layout,
  .admin-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-inner,
  .faq-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 62px 0;
  }

  .faq-answer-panel {
    min-height: auto;
    padding: 22px;
  }

  .admin-app {
    padding: 18px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .hero .container {
    min-height: 590px;
  }

  .hero .container {
    padding: 48px 0 86px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .price {
    font-size: 1.9rem;
  }

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

/* FAQ Knowledge Layout */
.faq-knowledge-layout {
  padding-bottom: 84px;
  background: var(--soft);
}

.faq-header {
  padding: 42px 0 32px;
}

.faq-header .breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-header #current-category-label {
  color: var(--gold);
}

.faq-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 0;
}

.faq-categories-wrapper {
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.faq-categories-wrapper::-webkit-scrollbar {
  display: none;
}

.faq-categories {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}

.faq-category-btn {
  white-space: nowrap;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(16, 35, 63, 0.04);
}

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

.faq-category-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(16, 35, 63, 0.15);
}

.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.faq-question-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.faq-question-btn:hover {
  background: rgba(219, 230, 243, 0.3);
  color: var(--navy);
}

.faq-question-btn.active {
  background: var(--white);
  border-color: var(--line);
  border-left-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(16, 35, 63, 0.06);
}

.faq-answer-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 42px;
  min-height: 500px;
  box-shadow: 0 12px 32px rgba(16, 35, 63, 0.06);
}

.faq-answer-title {
  font-size: 1.8rem;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.3;
}

.faq-answer-content {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq-answer-content p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--muted);
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question-list {
    margin-bottom: 24px;
  }
  
  .faq-question-btn {
    border-radius: 8px;
    border-left: 1px solid transparent;
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 8px;
  }
  
  .faq-question-btn.active {
    border-color: var(--gold);
  }
  
  .faq-answer-panel {
    padding: 24px;
    min-height: auto;
  }
}

/* Registration Sales Page Additions */
.hero-sales {
  padding: 80px 0;
}

.hero-sales-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-sales-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 12px 0 8px;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.trust-tag {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

.mockup-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.3s ease;
  color: var(--ink);
}

.mockup-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  border-bottom: 4px solid var(--gold);
}

.mockup-body {
  padding: 30px;
  background: #fdfdfd;
  min-height: 280px;
  position: relative;
}

.mockup-line {
  height: 12px;
  background: var(--line);
  margin-bottom: 16px;
  border-radius: 6px;
}

.mockup-line.title {
  height: 20px;
  width: 60%;
  background: var(--muted);
  margin-bottom: 24px;
}

.mockup-line.short {
  width: 40%;
}

.mockup-seal {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  transform: rotate(-15deg);
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 35, 63, 0.1);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.req-item {
  padding: 24px;
  background: var(--soft);
  border-radius: 8px;
  border-top: 3px solid var(--teal);
}

.timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.timeline-step {
  position: relative;
  padding-top: 40px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 30px;
  right: -20px;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--white);
}

.price-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-grid .price-card {
  height: 100%;
}

.mt-auto {
  margin-top: auto !important;
}

.mt-4 {
  margin-top: 24px;
}

.testimonial-card {
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.trust-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
}

.trust-badge-large .badge-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.vsg-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-sales-grid {
    grid-template-columns: 1fr;
  }
  .req-grid, .timeline-horizontal {
    grid-template-columns: 1fr;
  }
  .timeline-step::before {
    top: 0;
    left: 14px;
    right: auto;
    bottom: -20px;
    height: auto;
    width: 2px;
  }
  .timeline-step {
    padding-top: 0;
    padding-left: 50px;
  }
  .timeline-marker {
    top: 0;
    left: 0;
  }
}

/* --- Premium Corporate Redesign Styles --- */
.hero-premium {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,35,66,0.95) 0%, rgba(10,35,66,0.8) 100%), url('hero-office.png') center / cover;
  z-index: 0;
}

.hero-premium .container {
  position: relative;
  z-index: 1;
}

.eyebrow-emerald {
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eyebrow-emerald::before {
  background: var(--teal);
}

.premium-title {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.text-white {
  color: var(--white);
}

.text-emerald {
  color: var(--teal);
}

.btn-emerald {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}

.btn-emerald:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.premium-mockup-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: perspective(1200px) rotateY(-12deg) rotateX(6deg);
  transition: transform 0.4s ease;
}

.premium-mockup-card:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.mockup-seal-premium {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  transform: rotate(-15deg);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.blur-effect {
  position: relative;
}

.blur-effect::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(253,253,253,0) 0%, rgba(253,253,253,0.8) 100%);
  pointer-events: none;
}

.trust-bar-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
  position: relative;
  z-index: 10;
  margin-top: -10px;
}

.trust-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item-premium {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.trust-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}

.trust-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--soft);
}

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

.section-navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #153256 100%);
  color: var(--white);
}

.premium-heading-dark {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.premium-heading-light {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.premium-sub-dark {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.premium-sub-light {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
}

.benefit-cards {
  margin-top: 40px;
}

.benefit-card-premium {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -1px;
}

.benefit-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-text p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.req-premium-grid {
  margin-top: 40px;
}

.req-premium-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  text-align: center;
}

.req-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.req-premium-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-list-premium {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

.feature-list-premium li {
  position: relative;
  padding-left: 32px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

.feature-list-premium li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--teal);
  font-weight: 900;
  font-size: 1.2rem;
}

.premium-badge-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.badge-icon-emerald {
  width: 60px;
  height: 60px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.badge-text-wrapper {
  display: flex;
  flex-direction: column;
}

.badge-title {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
}

.badge-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.timeline-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.timeline-step-premium {
  position: relative;
  padding-top: 50px;
}

.timeline-step-premium::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: -30px;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.timeline-step-premium:last-child::before {
  display: none;
}

.timeline-marker-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white);
}

.timeline-step-premium h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline-premium {
  counter-reset: processStep;
}

.timeline-step-premium {
  opacity: 0;
  transform: translateY(18px);
  animation: processStepIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.timeline-step-premium:nth-child(1) {
  animation-delay: 0.08s;
}

.timeline-step-premium:nth-child(2) {
  animation-delay: 0.22s;
}

.timeline-step-premium:nth-child(3) {
  animation-delay: 0.36s;
}

.timeline-step-premium:nth-child(4) {
  animation-delay: 0.5s;
}

.timeline-step-premium::before {
  width: auto;
  transform: scaleX(0);
  transform-origin: left center;
  animation: processLineGrow 0.7s ease forwards;
}

.timeline-step-premium:nth-child(1)::before {
  animation-delay: 0.42s;
}

.timeline-step-premium:nth-child(2)::before {
  animation-delay: 0.58s;
}

.timeline-step-premium:nth-child(3)::before {
  animation-delay: 0.74s;
}

.timeline-marker-premium {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.timeline-step-premium:hover .timeline-marker-premium {
  background: var(--teal);
  box-shadow: 0 0 0 6px var(--white), 0 16px 30px rgba(15, 118, 110, 0.25);
  transform: translateY(-3px) scale(1.06);
}

.timeline-step-premium h3,
.timeline-step-premium p {
  transition: transform 0.22s ease, color 0.22s ease;
}

.timeline-step-premium:hover h3 {
  color: var(--teal);
}

@keyframes processStepIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processLineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes processLineGrowY {
  to {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-step-premium,
  .timeline-step-premium::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Bilingual navigation and knowledge centre */
.language-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  flex: 0 0 auto;
}

.language-links a,
.language-links span {
  min-width: 34px;
  padding: 5px 7px;
  border-radius: 4px;
  color: #526273;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.language-links span[aria-current="page"] {
  color: #fff;
  background: #0a2342;
}

.guides-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background: linear-gradient(90deg, rgba(7, 25, 48, 0.97) 0%, rgba(7, 25, 48, 0.9) 50%, rgba(7, 25, 48, 0.58) 100%), url("hero-office.png") center 38% / cover no-repeat;
}

.guides-hero-inner {
  padding-block: 104px 72px;
  max-width: 830px;
}

.guides-hero .eyebrow,
.article-hero .eyebrow {
  color: #8ce0c8;
}

.guides-hero h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.1;
}

.guides-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: #e2e8f0;
  font-size: 1.12rem;
  line-height: 1.75;
}

.guides-list-section { background: #f4f7fa; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2 { margin: 8px 0 12px; font-size: clamp(2rem, 4vw, 3rem); color: #0a2342; }
.section-heading p:last-child { color: #526273; }
.guide-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr); gap: 26px; align-items: start; }
.guide-list-stack { display: grid; gap: 22px; }
.guide-feature { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr); overflow: hidden; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; box-shadow: 0 18px 50px rgba(10, 35, 66, 0.08); }
.guide-card-media { min-height: 330px; display: flex; align-items: flex-end; padding: 28px; background: linear-gradient(155deg, rgba(10, 35, 66, 0.3), rgba(8, 117, 89, 0.78)), url("hero-office.png") center / cover; }
.guide-card-media.property { background: linear-gradient(155deg, rgba(10, 35, 66, 0.32), rgba(8, 117, 89, 0.82)), url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media.audit { background: linear-gradient(155deg, rgba(10, 35, 66, 0.34), rgba(8, 117, 89, 0.86)), url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media.naming { background: linear-gradient(155deg, rgba(10, 35, 66, 0.34), rgba(8, 117, 89, 0.84)), url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media.directors { background: linear-gradient(155deg, rgba(10, 35, 66, 0.36), rgba(8, 117, 89, 0.84)), url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media.shares { background: linear-gradient(155deg, rgba(10, 35, 66, 0.36), rgba(8, 117, 89, 0.84)), url("https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media.fundraising { background: linear-gradient(155deg, rgba(10, 35, 66, 0.38), rgba(8, 117, 89, 0.82)), url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1000&q=80") center / cover; }
.guide-card-media span { padding: 8px 12px; border-radius: 4px; color: #0a2342; background: #fff4d8; font-weight: 900; }
.guide-card-body { padding: 38px; align-self: center; }
.guide-meta { margin: 0 0 12px; color: #087559; font-size: 0.86rem; font-weight: 800; }
.guide-card-body h2 { margin: 0 0 16px; color: #0a2342; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.2; }
.guide-card-body p:not(.guide-meta) { margin: 0 0 26px; color: #526273; line-height: 1.75; }
.guide-topic-panel { padding: 36px; border: 1px solid #bcded3; border-radius: 8px; background: #eaf7f3; }
.guide-topic-panel h3 { margin: 8px 0 22px; color: #0a2342; font-size: 1.55rem; }
.guide-topic-panel ul { margin: 0 0 26px; padding: 0; list-style: none; }
.guide-topic-panel li { padding: 14px 0; border-bottom: 1px solid #c8e4db; color: #334155; }
.guide-library-section { background: #f4f7fa; }
.guides-directory-hero { min-height: 520px; }
.guide-library-panel { padding: clamp(24px, 4vw, 44px); border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(10, 35, 66, 0.08); }
.guide-library-header { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 26px; }
.guide-library-header h2 { margin: 6px 0 10px; color: #0a2342; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; }
.guide-library-header p:not(.eyebrow) { margin: 0; max-width: 720px; color: #526273; line-height: 1.75; }
.guide-library-count { min-width: 132px; padding: 18px; border-radius: 8px; background: #eaf7f3; border: 1px solid #bcded3; text-align: center; }
.guide-library-count strong { display: block; color: #087559; font-size: 2.4rem; line-height: 1; }
.guide-library-count span { color: #526273; font-weight: 800; }
.guide-tools { display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr); gap: 18px; align-items: end; margin: 26px 0 16px; }
.guide-search { display: grid; gap: 8px; }
.guide-search span { color: #0a2342; font-weight: 900; }
.guide-search input { width: 100%; border: 1px solid #cbd8e3; border-radius: 8px; padding: 15px 16px; font: inherit; color: #0a2342; background: #fff; outline: none; }
.guide-search input:focus { border-color: #087559; box-shadow: 0 0 0 4px rgba(8, 117, 89, 0.12); }
.guide-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.guide-filters button { border: 1px solid #cbd8e3; border-radius: 999px; padding: 10px 14px; background: #fff; color: #334155; font-weight: 900; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.guide-filters button:hover { transform: translateY(-1px); border-color: #087559; }
.guide-filters button.active { border-color: #087559; background: #087559; color: #fff; }
.guide-results-note { margin: 10px 0 22px; color: #526273; font-weight: 800; }
.guide-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.guide-mini-card { display: grid; grid-template-columns: 170px minmax(0, 1fr); min-height: 230px; border: 1px solid #d6e0e8; border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 14px 40px rgba(10, 35, 66, 0.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.guide-mini-card[hidden] { display: none !important; }
.guide-mini-card:hover { transform: translateY(-3px); border-color: #bcded3; box-shadow: 0 20px 56px rgba(10, 35, 66, 0.1); }
.guide-mini-card.featured { grid-column: span 1; border-color: #bcded3; }
.guide-mini-media { display: flex; align-items: flex-end; min-height: 100%; padding: 18px; text-decoration: none; background: url("hero-office.png") center / cover; }
.guide-mini-media.property { background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.audit { background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.naming { background: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.directors { background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.corporate { background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.shares { background: url("https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.fundraising { background: url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media.tax { background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=80") center / cover; }
.guide-mini-media span { padding: 7px 10px; border-radius: 4px; background: #fff4d8; color: #0a2342; font-weight: 900; }
.guide-mini-body { padding: 24px; }
.guide-mini-body h3 { margin: 6px 0 12px; font-size: 1.35rem; line-height: 1.22; }
.guide-mini-body h3 a { color: #0a2342; text-decoration: none; }
.guide-mini-body h3 a:hover { color: #087559; }
.guide-mini-body p:not(.guide-meta) { margin: 0 0 18px; color: #526273; line-height: 1.65; }
.guide-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.guide-tags span { padding: 5px 8px; border-radius: 999px; background: #eaf7f3; color: #087559; font-size: 0.78rem; font-weight: 900; }
.guide-empty { margin-top: 24px; padding: 28px; border: 1px dashed #b7c6d4; border-radius: 8px; background: #f8fafc; text-align: center; }
.guide-empty h3 { margin: 0 0 8px; color: #0a2342; }
.guide-empty p { color: #526273; }
.guide-suggestion-band { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) auto; gap: 22px; align-items: center; padding: 26px; border-radius: 8px; background: #0a2342; color: #fff; }
.guide-suggestion-band .eyebrow { color: #6ee7c8; }
.guide-suggestion-band h2 { margin: 6px 0 0; font-size: 1.55rem; color: #fff; }
.guide-suggestion-band ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.82); line-height: 1.75; }
.guide-suggestion-band .text-link { color: #6ee7c8; white-space: nowrap; }

/* Tax article */
.article-hero { color: #fff; background: #0a2342; }
.article-hero-inner { max-width: 1000px; padding-block: 62px 70px; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: #b7c6d8; font-size: 0.86rem; }
.article-breadcrumb a { color: #dce7f3; text-decoration: none; }
.article-hero h1 { max-width: 920px; margin: 12px 0 20px; color: #fff; font-size: clamp(2.45rem, 5.4vw, 4.7rem); line-height: 1.08; }
.article-lead { max-width: 810px; margin: 0; color: #dce7f3; font-size: 1.15rem; line-height: 1.78; }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; color: #b7c6d8; font-size: 0.86rem; }
.article-caution { max-width: 900px; display: grid; grid-template-columns: auto 1fr; gap: 14px; margin-top: 30px; padding: 16px 18px; border-left: 3px solid #d5a62b; color: #e8edf4; background: rgba(255,255,255,0.07); }
.article-caution strong { color: #ffe5a0; }
.deadline-band { padding: 64px 0; background: #f4f7fa; }
.deadline-heading { max-width: 710px; }
.deadline-heading h2 { margin: 8px 0 10px; color: #0a2342; font-size: clamp(2rem, 4vw, 3rem); }
.deadline-heading p { color: #526273; }
.deadline-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 30px; }
.deadline-grid.phase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.deadline-card { display: grid; gap: 8px; padding: 28px; border: 1px solid #d6e0e8; border-top: 4px solid #d5a62b; border-radius: 8px; background: #fff; }
.deadline-card.featured { border-top-color: #087559; background: #eaf7f3; }
.deadline-card span { color: #334155; font-weight: 800; }
.deadline-card strong { color: #0a2342; font-size: clamp(2.1rem, 4vw, 3.25rem); line-height: 1.1; }
.deadline-card small { color: #526273; font-size: 0.91rem; }
.deadline-card b { margin-top: 8px; color: #087559; }
.annual-return-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.annual-return-summary .deadline-card { min-height: auto; padding: 18px 20px; gap: 6px; }
.annual-return-summary .deadline-card strong { font-size: clamp(1.9rem, 3vw, 2.65rem); }
.annual-return-summary .deadline-card small { line-height: 1.5; }
.annual-return-summary .deadline-card b { margin-top: 2px; font-size: 0.92rem; }
.compact-info-cards article { padding: 18px; }
.compact-info-cards h3 { font-size: 1rem; line-height: 1.35; }
.example-timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.example-timeline article { position: relative; padding: 18px; border: 1px solid #d6e0e8; border-radius: 8px; background: #f8fafc; }
.example-timeline article + article::before { content: "→"; position: absolute; left: -15px; top: 50%; transform: translateY(-50%); color: #087559; font-weight: 900; }
.example-timeline span { display: block; margin-bottom: 8px; color: #087559; font-size: 0.82rem; font-weight: 900; }
.example-timeline strong { display: block; color: #0a2342; font-size: 1.18rem; line-height: 1.25; }
.example-timeline p { margin: 10px 0 0; color: #526273; font-size: 0.92rem; line-height: 1.55; }
.article-faq { margin-top: 22px; }
.article-faq details { box-shadow: 0 10px 24px rgba(10, 35, 66, 0.035); }
.article-faq summary { padding: 16px 18px; }
.article-faq p { padding: 0 18px 18px; }
.source-note { margin: 20px 0 0; color: #526273; font-size: 0.86rem; line-height: 1.65; }
.source-note a { color: #087559; }
.official-link-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 22px; padding: 22px; border: 1px solid #bcded3; border-radius: 8px; background: #fff; box-shadow: 0 14px 34px rgba(10, 35, 66, 0.06); }
.official-link-card strong { display: block; margin-bottom: 6px; color: #0a2342; font-size: 1.05rem; }
.official-link-card p { margin: 0; color: #526273; line-height: 1.65; }
.official-link-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; flex: 0 0 auto; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 790px); justify-content: center; gap: 70px; padding-block: 70px 100px; }
.article-toc { position: sticky; top: 104px; align-self: start; display: grid; gap: 4px; padding: 20px; border: 1px solid #d6e0e8; border-radius: 8px; background: #f8fafc; }
.article-toc strong { margin-bottom: 10px; color: #0a2342; }
.article-toc a { padding: 8px 10px; border-radius: 4px; color: #526273; font-size: 0.86rem; text-decoration: none; }
.article-toc a:hover { color: #087559; background: #eaf7f3; }
.mobile-toc { display: none; }
.article-content { min-width: 0; }
.article-section { scroll-margin-top: 110px; padding-bottom: 68px; }
.article-section + .article-section { padding-top: 68px; border-top: 1px solid #dbe3ea; }
.section-number { margin: 0 0 10px; color: #087559; font-size: 0.82rem; font-weight: 900; letter-spacing: 0; }
.article-section h2 { margin: 0 0 22px; color: #0a2342; font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.2; }
.article-section h3 { margin: 30px 0 10px; color: #10233f; font-size: 1.25rem; }
.article-section > p { color: #475569; line-height: 1.82; }
.tax-form-grid,
.payment-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.tax-form-grid article,
.payment-methods article { padding: 22px; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; }
.tax-form-grid span,
.payment-methods span { display: inline-block; padding: 5px 8px; border-radius: 4px; color: #087559; background: #dff5ed; font-size: 0.8rem; font-weight: 900; }
.tax-form-grid h3,
.payment-methods h3 { margin: 16px 0 8px; font-size: 1.05rem; }
.tax-form-grid p,
.payment-methods p { margin: 0; color: #526273; font-size: 0.92rem; line-height: 1.65; }
.info-box,
.tip-box { margin: 28px 0; padding: 24px; border-left: 4px solid #087559; border-radius: 4px; background: #eaf7f3; }
.info-box h3 { margin: 0 0 8px; }
.info-box p { margin: 0; color: #334155; line-height: 1.75; }
.tip-box { display: grid; grid-template-columns: auto 1fr; gap: 16px; color: #334155; background: #f4f7fa; }
.tip-box strong { color: #087559; }
.resident-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 28px 0; }
.resident-compare article { padding: 26px; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; }
.resident-compare article:first-child { border-color: #a9d8c9; background: #eaf7f3; }
.resident-compare span { color: #087559; font-size: 0.8rem; font-weight: 900; }
.resident-compare h3 { margin: 10px 0 16px; }
.resident-compare ul { margin: 0; padding-left: 20px; color: #475569; line-height: 1.8; }
.document-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.document-checklist article { padding: 22px; border-left: 3px solid #087559; background: #f4f7fa; }
.document-checklist strong { color: #0a2342; }
.document-checklist p { margin: 8px 0 0; color: #526273; line-height: 1.65; }
.filing-steps { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; }
.filing-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 0 0 26px; position: relative; }
.filing-steps li::before { content: ""; position: absolute; left: 24px; top: 48px; bottom: 0; width: 1px; background: #b8d9cf; }
.filing-steps li:last-child::before { display: none; }
.filing-steps li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #087559; font-weight: 900; }
.filing-steps h3 { margin: 3px 0 6px; }
.filing-steps p { margin: 0; color: #526273; line-height: 1.7; }
.relief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 30px 0; }
.relief-grid article { padding: 22px; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; }
.relief-grid span { color: #087559; font-size: 1.12rem; font-weight: 900; }
.relief-grid h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.relief-grid p { margin: 0; color: #526273; font-size: 0.91rem; line-height: 1.62; }
.mistake-list { display: grid; gap: 14px; margin: 28px 0; }
.mistake-list article { padding: 22px 24px; border: 1px solid #ead9a9; border-radius: 8px; background: #fffaf0; }
.mistake-list h3 { margin: 0 0 8px; }
.mistake-list p { margin: 0; color: #526273; line-height: 1.7; }
.official-sources ul { padding-left: 20px; line-height: 1.9; }
.official-sources a { color: #087559; }
.legal-note { margin-top: 30px; padding: 24px; border: 1px solid #d6e0e8; border-radius: 8px; background: #f4f7fa; }
.legal-note strong { color: #0a2342; }
.legal-note p { margin: 8px 0 0; color: #526273; line-height: 1.7; }
.tax-example-box { margin: 28px 0; padding: 24px; border: 1px solid #bcded3; border-left: 4px solid #087559; border-radius: 8px; background: #eaf7f3; color: #334155; }
.tax-example-box strong { display: block; margin-bottom: 8px; color: #0a2342; font-size: 1.05rem; }
.tax-example-box p { margin: 0; color: #334155; line-height: 1.75; }
.expense-status-table { margin: 28px 0; overflow-x: auto; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; box-shadow: 0 12px 34px rgba(10, 35, 66, 0.05); }
.expense-status-table table { width: 100%; border-collapse: collapse; min-width: 680px; }
.expense-status-table th,
.expense-status-table td { padding: 15px 16px; border-bottom: 1px solid #e5ebf0; text-align: left; vertical-align: top; color: #334155; line-height: 1.55; }
.expense-status-table th { background: #f4f7fa; color: #0a2342; font-size: .88rem; text-transform: uppercase; letter-spacing: 0; }
.expense-status-table tr:last-child td { border-bottom: 0; }
.status-allowable,
.status-review,
.status-disallowed { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; font-size: .82rem; font-weight: 900; white-space: nowrap; }
.status-allowable { background: #dff5ed; color: #087559; }
.status-review { background: #fff4d8; color: #8a5a00; }
.status-disallowed { background: #fde8e8; color: #b42318; }
.fee-estimator-section { scroll-margin-top: 110px; }
.fee-calculator { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 28px 0; padding: 24px; border: 1px solid #bcded3; border-radius: 8px; background: linear-gradient(135deg, #f8fcfb 0%, #fff 58%, #eef8f4 100%); }
.fee-calculator-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fee-calculator-form label { display: block; margin-bottom: 7px; color: #0a2342; font-size: .92rem; font-weight: 800; }
.fee-calculator-form input { width: 100%; min-height: 46px; border: 1px solid #cbd8e3; border-radius: 8px; padding: 10px 12px; color: #0a2342; background: #fff; font: inherit; }
.fee-calculator-form input:focus { outline: 3px solid rgba(8, 117, 89, .18); border-color: #087559; }
.fee-calculator-result { min-width: 0; padding: 26px; border-radius: 8px; background: #0a2342; color: #fff; }
.fee-calculator-result > span { display: block; color: #bde9dc; font-size: .88rem; font-weight: 800; text-transform: uppercase; }
.fee-calculator-result > strong { display: block; margin-top: 6px; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1; }
.fee-calculator-result p { color: rgba(255,255,255,.78); }
.fee-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.fee-result-grid article { padding: 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); }
.fee-result-grid small { display: block; color: rgba(255,255,255,.68); font-weight: 700; }
.fee-result-grid small em { display: block; margin-top: 3px; color: #bde9dc; font-size: .78rem; font-style: normal; font-weight: 700; }
.fee-result-grid strong { display: block; margin-top: 5px; color: #fff; font-size: 1.08rem; }
.fee-total { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); }
.fee-total strong { color: #bde9dc; }
.fee-calculator-result .btn { width: 100%; justify-content: center; margin-top: 8px; }
.fee-estimate-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 18px 0; }
.fee-estimate-columns article { min-width: 0; padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); }
.fee-estimate-columns h3 { margin: 0 0 14px; color: #fff; font-size: 1.05rem; line-height: 1.35; }
.fee-estimate-columns dl { display: grid; gap: 8px; margin: 0; }
.fee-estimate-columns dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.12); }
.fee-estimate-columns dl div:last-child { border-bottom: 0; padding-bottom: 0; }
.fee-estimate-columns dt { color: rgba(255,255,255,.68); font-size: .86rem; font-weight: 700; }
.fee-estimate-columns dd { margin: 0; color: #fff; font-weight: 900; text-align: right; white-space: nowrap; }
.fee-estimate-columns .estimate-total { margin-top: 4px; padding-top: 10px; border-top: 1px solid rgba(189,233,220,.36); }
.fee-estimate-columns .estimate-total dt,
.fee-estimate-columns .estimate-total dd { color: #bde9dc; }
.fee-note-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 22px 0; }
.fee-note-grid article { padding: 18px; border: 1px solid #d8e4ec; border-radius: 8px; background: #fff; }
.fee-note-grid h3 { margin: 0 0 8px; color: #0a2342; font-size: 1.02rem; }
.fee-note-grid p { margin: 0; color: #526273; line-height: 1.72; }
.article-cta { background: #0a2342; }

.kwsp-guide-section {
  background: #f4f7fa;
}

.kwsp-carousel {
  padding: 22px;
  border: 1px solid #d6e0e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(10, 35, 66, 0.08);
}

.kwsp-slides {
  min-height: 560px;
}

.kwsp-step {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.kwsp-step[hidden] {
  display: none;
}

.kwsp-image-frame {
  min-height: 520px;
  border: 1px solid #d6e0e8;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}

.kwsp-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  display: block;
}

.kwsp-step-copy {
  padding: 32px;
  border-radius: 8px;
  background: #0a2342;
  color: #ffffff;
}

.kwsp-step-copy .eyebrow {
  color: #bde9dc;
}

.kwsp-step-copy h2 {
  margin: 10px 0 16px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.18;
}

.kwsp-step-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.kwsp-step-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.kwsp-step-copy li {
  position: relative;
  padding-left: 25px;
  color: #ffffff;
  font-weight: 800;
}

.kwsp-step-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
}

.kwsp-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

.kwsp-controls span {
  min-width: 58px;
  color: #526273;
  font-weight: 900;
  text-align: center;
}

.compact-article {
  max-width: 980px;
}

.home-guide-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 38px;
  border-left: 4px solid #087559;
  border-radius: 8px;
  background: #eaf7f3;
}

.home-guide-teaser span { color: #087559; font-size: 0.82rem; font-weight: 900; }
.home-guide-teaser h3 { margin: 8px 0; color: #0a2342; font-size: clamp(1.35rem, 3vw, 2rem); }
.home-guide-teaser p { max-width: 720px; margin: 0; color: #526273; line-height: 1.7; }
.home-guide-teaser .btn { flex: 0 0 auto; }
.company-profile-panel { max-width: 850px; padding: 34px; border: 1px solid #c9d7e2; border-radius: 8px; background: #fff; }
.company-profile-panel h3 { color: #0a2342; }
.company-profile-panel p { color: #526273; line-height: 1.75; }

@media (max-width: 680px) {
  .home-guide-teaser { display: grid; padding: 26px 22px; }
  .home-guide-teaser .btn { width: fit-content; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 12px; }
  .nav-links > a:not(.btn), .nav-parent { font-size: 0.88rem; }
  .article-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .language-links { width: fit-content; margin: 6px 0; }
  .guide-grid, .guide-feature { grid-template-columns: 1fr; }
  .guide-card-media { min-height: 240px; }
  .guide-library-header, .guide-tools, .guide-suggestion-band { grid-template-columns: 1fr; }
  .guide-library-header { flex-direction: column; }
  .guide-library-count { width: 100%; text-align: left; }
  .guide-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .guide-filters button { flex: 0 0 auto; }
  .guide-card-grid { grid-template-columns: 1fr; }
  .guide-mini-card { grid-template-columns: 1fr; }
  .guide-mini-media { min-height: 185px; }
  .guide-suggestion-band { align-items: start; }
  .article-layout { display: block; padding-block: 42px 80px; }
  .article-toc { display: none; }
  .mobile-toc { display: block; margin: 0 0 44px; border: 1px solid #d6e0e8; border-radius: 8px; background: #f4f7fa; }
  .mobile-toc summary { padding: 16px 18px; color: #0a2342; font-weight: 800; cursor: pointer; }
  .mobile-toc nav { display: grid; padding: 0 18px 18px; }
  .mobile-toc a { padding: 8px 0; color: #526273; text-decoration: none; }
  .fee-calculator { grid-template-columns: 1fr; }
  .fee-note-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .guides-hero { min-height: 470px; }
  .guides-hero-inner { padding-block: 88px 54px; }
  .guides-hero h1 { font-size: 2.55rem; }
  .guide-card-body, .guide-topic-panel { padding: 26px 22px; }
  .guide-library-panel { padding: 22px 16px; }
  .guide-library-header h2 { font-size: 2rem; }
  .guide-mini-body { padding: 22px 18px; }
  .guide-mini-body h3 { font-size: 1.22rem; }
  .article-hero-inner { padding-block: 42px 52px; }
  .article-breadcrumb { margin-bottom: 30px; }
  .article-hero h1 { font-size: 2.55rem; }
  .article-lead { font-size: 1rem; }
  .article-caution { grid-template-columns: 1fr; }
  .deadline-band { padding: 48px 0; }
  .official-link-card { display: grid; padding: 18px; }
  .official-link-actions { justify-content: flex-start; }
  .deadline-grid,
  .deadline-grid.phase-grid,
  .annual-return-summary,
  .example-timeline,
  .tax-form-grid,
  .payment-methods,
  .resident-compare,
  .document-checklist,
  .relief-grid { grid-template-columns: 1fr; }
  .example-timeline article + article::before { content: "↓"; left: 18px; top: -17px; transform: none; }
  .article-section { padding-bottom: 52px; }
  .article-section + .article-section { padding-top: 52px; }
  .article-section h2 { font-size: 2rem; }
  .expense-status-table { overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .expense-status-table table,
  .expense-status-table thead,
  .expense-status-table tbody,
  .expense-status-table tr,
  .expense-status-table th,
  .expense-status-table td { display: block; width: 100%; min-width: 0; }
  .expense-status-table thead { display: none; }
  .expense-status-table tr { margin: 0 0 14px; padding: 16px; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(10, 35, 66, 0.05); }
  .expense-status-table td { padding: 8px 0; border-bottom: 0; }
  .expense-status-table td:first-child { color: #0a2342; font-weight: 900; }
  .tip-box { grid-template-columns: 1fr; }
  .fee-calculator { padding: 18px; }
  .fee-calculator-form,
  .fee-result-grid,
  .fee-estimate-columns { grid-template-columns: 1fr; }
  .fee-calculator-result { padding: 18px; }
  .kwsp-carousel { padding: 14px; }
  .kwsp-slides { min-height: 0; }
  .kwsp-step { grid-template-columns: 1fr; }
  .kwsp-image-frame,
  .kwsp-image-frame img { min-height: 0; }
  .kwsp-step-copy { padding: 24px 20px; }
  .kwsp-controls { justify-content: space-between; }
}

/* LLP registration page */
.llp-registration-page {
  --llp-navy: #0a2342;
  --llp-ink: #10233f;
  --llp-copy: #334155;
  --llp-muted: #526273;
  --llp-mint: #eaf7f3;
  --llp-green: #087559;
  --llp-neutral: #f4f7fa;
  --llp-gold: #fff4d8;
  color: var(--llp-copy);
}

.llp-registration-page main p,
.llp-registration-page main li,
.llp-registration-page main [role="cell"] {
  font-size: 16px;
  line-height: 1.7;
}

.llp-registration-page main h1,
.llp-registration-page main h2,
.llp-registration-page main h3 {
  color: var(--llp-ink);
  letter-spacing: 0;
}

.llp-registration-page main h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.18;
}

.llp-registration-page .eyebrow {
  color: var(--llp-green);
  font-size: 14px;
  letter-spacing: 0;
}

.llp-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--llp-navy) url("hero-office.png") center/cover no-repeat;
  color: #fff;
}

.llp-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 48, .97) 0%, rgba(5, 24, 48, .91) 48%, rgba(5, 24, 48, .64) 100%);
  content: "";
}

.llp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .62fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  min-height: 620px;
  padding-top: 66px;
  padding-bottom: 66px;
}

.llp-hero .eyebrow { color: #8de2cb; }
.llp-registration-page .llp-hero h1 {
  max-width: 790px;
  margin: 12px 0 22px;
  color: #fff !important;
  font-size: clamp(3.1rem, 5.2vw, 4rem);
  line-height: 1.06;
}

.llp-hero-lede {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px !important;
}

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

.llp-mobile-price { display: none; }

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, .42);
  background: transparent;
  color: #fff;
}

.btn-ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.llp-hero-note { margin: 20px 0 0; color: rgba(255, 255, 255, .66); font-size: 14px !important; }

.llp-price-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  color: var(--llp-copy);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}

.llp-price-card > span { color: var(--llp-green); font-size: 14px; font-weight: 850; }
.llp-price-card > strong { display: block; margin: 8px 0 0; color: var(--llp-ink); font-size: clamp(3.4rem, 5vw, 4.7rem); line-height: 1; }
.llp-price-card > p { margin: 7px 0 22px; color: var(--llp-muted); }
.llp-price-card > div { display: grid; gap: 4px; padding: 15px 17px; border-left: 3px solid var(--llp-green); background: var(--llp-mint); }
.llp-price-card > div b { color: var(--llp-ink); }
.llp-price-card > div small { color: var(--llp-muted); font-size: 14px; }
.llp-price-card ul { display: grid; gap: 6px; margin: 22px 0; padding-left: 21px; }
.llp-price-card li { color: var(--llp-copy); font-size: 15px !important; }
.llp-price-card li::marker { color: var(--llp-green); }
.llp-price-card > a { color: var(--llp-green); font-weight: 850; }

.llp-fact-strip { padding: 26px 0; background: #fff; }
.llp-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.llp-facts article { display: grid; grid-template-columns: auto 1fr; gap: 4px 13px; padding: 13px 24px; border-right: 1px solid #dce4e9; }
.llp-facts article:last-child { border-right: 0; }
.llp-facts span { grid-row: 1 / 3; color: var(--llp-green); font-size: 14px; font-weight: 900; }
.llp-facts strong { color: var(--llp-ink); font-size: 17px; }
.llp-facts small { color: var(--llp-muted); font-size: 14px; line-height: 1.5; }

.llp-structure-section { background: var(--llp-neutral); }
.llp-structure-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr); gap: clamp(50px, 8vw, 120px); align-items: center; }
.llp-section-copy { max-width: 620px; }
.llp-section-copy h2 { margin: 10px 0 22px; }
.llp-section-copy p { color: var(--llp-copy); }

.llp-structure-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 35px;
  border: 1px solid #dce5e9;
  border-radius: 8px;
  background: #fff;
}

.structure-source { display: grid; gap: 8px; min-height: 145px; align-content: center; padding: 24px; border: 1px solid #d9e2e7; background: var(--llp-neutral); text-align: center; }
.structure-source span { color: var(--llp-green); font-size: 14px; font-weight: 850; }
.structure-source strong { color: var(--llp-ink); font-size: 19px; }
.structure-plus { color: #b58317; font-size: 2.2rem; font-weight: 900; }
.structure-result { grid-column: 1 / -1; display: grid; gap: 5px; padding: 22px; border-left: 4px solid var(--llp-green); background: var(--llp-mint); text-align: center; }
.structure-result small { color: var(--llp-green); font-size: 14px; font-weight: 850; }
.structure-result strong { color: var(--llp-ink); font-size: 30px; }
.structure-result span { color: var(--llp-copy); }

.llp-fit-section { background: #fff; }
.llp-section-head { align-items: end; }
.llp-section-head > p { max-width: 520px; color: var(--llp-copy); }
.llp-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 42px; }
.llp-fit-grid article { min-height: 390px; padding: clamp(30px, 4vw, 48px); border: 1px solid #d9e3e8; border-radius: 8px; }
.llp-fit-yes { background: var(--llp-mint); }
.llp-fit-no { background: var(--llp-neutral); }
.llp-fit-grid article > span { display: inline-block; padding: 5px 10px; border-radius: 4px; background: var(--llp-ink); color: #fff; font-size: 14px; font-weight: 850; }
.llp-fit-grid h3 { margin: 24px 0 18px; font-size: 25px; }
.llp-fit-grid ul { display: grid; gap: 8px; padding-left: 21px; }
.llp-fit-grid li::marker { color: var(--llp-green); }
.llp-fit-grid a { display: inline-block; margin-top: 18px; color: var(--llp-green); font-weight: 850; }

.llp-package-section { background: var(--llp-neutral); }
.llp-package-layout { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr); gap: clamp(45px, 8vw, 110px); align-items: start; }
.llp-package-price { position: sticky; top: 120px; padding: 36px; border: 1px solid #d7e2e6; border-radius: 8px; background: #fff; box-shadow: 0 22px 50px rgba(10, 35, 66, .08); }
.llp-package-price > span { display: block; color: var(--llp-muted); font-size: 14px; }
.llp-package-price > strong { display: block; margin: 8px 0; color: var(--llp-ink); font-size: clamp(3.7rem, 6vw, 5.4rem); line-height: 1; }
.llp-package-price > small { display: block; color: var(--llp-green); font-size: 14px; font-weight: 800; }
.llp-package-price .btn { margin-top: 26px; }
.llp-package-scope > div:first-child { max-width: 680px; }
.llp-package-scope h2 { margin: 0 0 14px; }
.llp-scope-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.llp-scope-columns article { padding: 30px; border: 1px solid #d7e2e6; border-radius: 8px; background: #fff; }
.llp-scope-columns article:first-child { border-top: 4px solid var(--llp-green); }
.llp-scope-columns article:last-child { border-top: 4px solid #8b98a6; }
.llp-scope-columns h3 { margin-top: 0; font-size: 21px; }
.llp-scope-columns ul { display: grid; gap: 8px; padding-left: 21px; }
.llp-scope-columns article:first-child li::marker { color: var(--llp-green); }

.llp-requirements-section { background: #fff; }
.llp-requirements-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.llp-requirements-grid article { min-height: 245px; padding: 30px; border: 1px solid #d9e3e8; border-radius: 8px; background: #fff; transition: transform .2s ease, border-color .2s ease; }
.llp-requirements-grid article:nth-child(2), .llp-requirements-grid article:nth-child(5) { background: var(--llp-neutral); }
.llp-requirements-grid article:hover { border-color: rgba(8, 117, 89, .45); transform: translateY(-4px); }
.llp-requirements-grid span { color: var(--llp-green); font-size: 14px; font-weight: 900; }
.llp-requirements-grid h3 { margin: 35px 0 12px; font-size: 21px; }
.llp-requirements-grid p { margin: 0; color: var(--llp-muted); }

.llp-process-section { background: var(--llp-neutral); }
.llp-process-line { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 13px; margin: 50px 0 0; padding: 0; list-style: none; }
.llp-process-line::before { position: absolute; top: 28px; right: 5%; left: 5%; height: 2px; background: #cbd6dd; content: ""; }
.llp-process-line li { position: relative; z-index: 1; min-height: 245px; padding: 20px; border: 1px solid #d8e2e7; border-radius: 8px; background: #fff; }
.llp-process-line li:nth-child(even) { margin-top: 32px; }
.llp-process-line li > span { display: grid; place-items: center; width: 56px; height: 56px; border: 2px solid #c9a245; border-radius: 50%; background: var(--llp-gold); color: var(--llp-ink); font-size: 14px; font-weight: 900; }
.llp-process-line h3 { margin: 42px 0 10px; font-size: 18px; }
.llp-process-line p { margin: 0; color: var(--llp-muted); font-size: 15px !important; }

.llp-agreement-section { background: #fff; }
.llp-agreement-lead { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .52fr); gap: clamp(45px, 8vw, 110px); align-items: center; }
.llp-agreement-lead > div { padding-left: 24px; border-left: 4px solid #c69423; }
.llp-agreement-lead .eyebrow { color: #8c6000; }
.llp-agreement-lead h2 { max-width: 800px; margin-bottom: 0; }
.llp-agreement-lead aside { display: grid; gap: 8px; padding: 30px; border: 1px solid #e4cf98; border-radius: 8px; background: var(--llp-gold); }
.llp-agreement-lead aside span { color: #805800; font-size: 14px; font-weight: 850; }
.llp-agreement-lead aside strong { color: var(--llp-ink); font-size: 30px; }
.llp-agreement-lead aside small { color: var(--llp-copy); font-size: 14px; line-height: 1.5; }
.llp-agreement-lead aside a { margin-top: 8px; color: #765200; font-weight: 850; }
.llp-scenarios { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 13px; margin-top: 52px; }
.llp-scenarios article { min-height: 245px; padding: 25px; border: 1px solid #dae3e8; border-radius: 8px; background: var(--llp-neutral); }
.llp-scenarios span { color: #8c6000; font-size: 14px; font-weight: 900; }
.llp-scenarios h3 { margin: 38px 0 11px; font-size: 18px; }
.llp-scenarios p { margin: 0; color: var(--llp-muted); font-size: 15px !important; }
.llp-agreement-clauses { margin-top: 28px; padding: 34px; border: 1px solid #dbe4e8; border-radius: 8px; background: #fff; }
.llp-agreement-clauses h3 { margin-top: 0; font-size: 22px; }
.llp-agreement-clauses > div { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0; }
.llp-agreement-clauses span { padding: 8px 12px; border: 1px solid #d4dde2; border-radius: 4px; background: var(--llp-neutral); color: var(--llp-ink); font-size: 14px; font-weight: 750; }
.llp-agreement-clauses p { margin-bottom: 0; color: var(--llp-muted); }

.llp-annual-section { background: var(--llp-mint); }
.llp-annual-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, .7fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.llp-annual-card { padding: 36px; border: 1px solid rgba(8, 117, 89, .25); border-radius: 8px; background: #fff; box-shadow: 0 20px 50px rgba(10, 35, 66, .08); }
.llp-annual-card > span { color: var(--llp-green); font-size: 14px; font-weight: 850; }
.llp-annual-card > strong { display: block; margin: 8px 0 22px; color: var(--llp-ink); font-size: 3.3rem; }
.llp-annual-card ul { display: grid; gap: 8px; padding-left: 21px; }
.llp-annual-card li::marker { color: var(--llp-green); }
.llp-annual-card p { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid #d9e3e8; color: var(--llp-muted); font-size: 14px !important; }

.llp-compare-section { background: #fff; }
.llp-compare-table { overflow: hidden; margin-top: 42px; border: 1px solid #d7e1e6; border-radius: 8px; }
.llp-compare-row { display: grid; grid-template-columns: .7fr 1fr 1fr; border-bottom: 1px solid #dfe7eb; }
.llp-compare-row:last-child { border-bottom: 0; }
.llp-compare-row > * { padding: 19px 22px; border-right: 1px solid #dfe7eb; }
.llp-compare-row > *:last-child { border-right: 0; }
.llp-compare-row > :first-child { color: var(--llp-ink); font-weight: 800; }
.llp-compare-row > :nth-child(2) { background: rgba(234, 247, 243, .65); }
.llp-compare-head { background: var(--llp-ink); }
.llp-compare-head > * { color: #fff !important; background: transparent !important; }
.llp-compare-note { margin: 22px 0 0; padding: 18px 20px; border-left: 3px solid #b88a24; background: var(--llp-neutral); color: var(--llp-copy); }

.llp-faq-section { background: var(--llp-neutral); }
.llp-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.llp-faq-grid details { align-self: start; border: 1px solid #d8e2e7; border-radius: 8px; background: #fff; }
.llp-faq-grid summary { padding: 22px 24px; color: var(--llp-ink); font-size: 17px; font-weight: 800; cursor: pointer; }
.llp-faq-grid p { margin: 0; padding: 0 24px 23px; color: var(--llp-copy); font-size: 15px !important; }
.llp-final-cta h2 { color: #fff !important; }
.llp-final-cta p { max-width: 760px; color: rgba(255, 255, 255, .76); }
.llp-final-cta .eyebrow { color: #8de2cb; }

@media (max-width: 1100px) {
  .llp-hero-inner { grid-template-columns: 1fr minmax(280px, .55fr); gap: 36px; }
  .llp-structure-layout { grid-template-columns: 1fr; }
  .llp-package-layout { grid-template-columns: 1fr; }
  .llp-package-price { position: static; }
  .llp-process-line { grid-template-columns: repeat(3, 1fr); }
  .llp-process-line::before { display: none; }
  .llp-process-line li:nth-child(even) { margin-top: 0; }
  .llp-scenarios { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .llp-hero { min-height: 0; }
  .llp-hero::before { background: rgba(5, 24, 48, .91); }
  .llp-hero-inner { grid-template-columns: 1fr; min-height: 0; padding-top: 54px; padding-bottom: 54px; }
  .llp-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .llp-price-card { display: none; }
  .llp-mobile-price { display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; margin-top: 24px; padding: 15px 17px; border-left: 3px solid #45c4a2; background: rgba(255, 255, 255, .1); }
  .llp-mobile-price span { color: rgba(255, 255, 255, .76); font-size: 14px; }
  .llp-mobile-price strong { grid-row: 1 / 3; grid-column: 2; align-self: center; color: #fff; font-size: 28px; }
  .llp-mobile-price small { color: #9be7d2; font-size: 14px; }
  .llp-facts { grid-template-columns: 1fr 1fr; }
  .llp-facts article:nth-child(2) { border-right: 0; }
  .llp-facts article:nth-child(-n+2) { border-bottom: 1px solid #dce4e9; }
  .llp-fit-grid,
  .llp-scope-columns,
  .llp-agreement-lead,
  .llp-annual-layout { grid-template-columns: 1fr; }
  .llp-requirements-grid { grid-template-columns: 1fr 1fr; }
  .llp-scenarios { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .llp-registration-page main p,
  .llp-registration-page main li,
  .llp-registration-page main [role="cell"] { font-size: 15px; }
  .llp-registration-page main h2 { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .llp-hero-inner { padding-top: 36px; padding-bottom: 36px; }
  .llp-registration-page .llp-hero h1 { font-size: clamp(2.6rem, 12vw, 3rem); }
  .llp-hero-lede { font-size: 16px !important; }
  .llp-hero-actions,
  .llp-hero-note { display: none; }
  .llp-price-card { padding: 27px 23px; }
  .llp-facts { grid-template-columns: 1fr; }
  .llp-facts article { border-right: 0; border-bottom: 1px solid #dce4e9; }
  .llp-facts article:last-child { border-bottom: 0; }
  .llp-structure-visual { grid-template-columns: 1fr; padding: 22px; }
  .structure-plus { text-align: center; }
  .structure-result { grid-column: 1; }
  .llp-fit-grid,
  .llp-scope-columns,
  .llp-requirements-grid,
  .llp-process-line,
  .llp-scenarios,
  .llp-faq-grid { grid-template-columns: 1fr; }
  .llp-fit-grid article { min-height: 0; padding: 28px 23px; }
  .llp-package-price,
  .llp-scope-columns article,
  .llp-agreement-lead aside,
  .llp-agreement-clauses,
  .llp-annual-card { padding: 27px 23px; }
  .llp-requirements-grid article,
  .llp-process-line li,
  .llp-scenarios article { min-height: 0; }
  .llp-process-line h3,
  .llp-scenarios h3 { margin-top: 22px; }
  .llp-agreement-lead > div { padding-left: 17px; }
  .llp-compare-table { border: 0; }
  .llp-compare-head { display: none; }
  .llp-compare-row { grid-template-columns: 1fr; margin-bottom: 14px; border: 1px solid #d7e1e6; border-radius: 8px; background: #fff; }
  .llp-compare-row > * { border-right: 0; border-bottom: 1px solid #dfe7eb; }
  .llp-compare-row > *:last-child { border-bottom: 0; }
  .llp-compare-row [data-label] { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; }
  .llp-compare-row [data-label]::before { color: var(--llp-green); font-size: 14px; font-weight: 850; content: attr(data-label); }
}

@media (prefers-reduced-motion: reduce) {
  .llp-requirements-grid article { transition: none; }
}

/* Registration readability guard: legacy component rules must not shrink helper copy. */
.registration-sdnbhd-page .hero-fee-summary span,
.registration-sdnbhd-page .hero-fee-summary small,
.registration-sdnbhd-page .cert-title small,
.registration-sdnbhd-page .mockup-seal-premium,
.registration-sdnbhd-page .quick-start-steps > li > span,
.registration-sdnbhd-page .registration-price-meta small,
.registration-sdnbhd-page .fit-list a,
.registration-sdnbhd-page .address-included span,
.registration-sdnbhd-page .incorp-process-list li > span,
.registration-sdnbhd-page .fee-stage-heading > span,
.registration-sdnbhd-page .annual-renewal-banner > div > span {
  font-size: 14px;
}

@media (max-width: 900px) {
  .registration-sdnbhd-page .prep-orbit-tab span,
  .registration-sdnbhd-page .prep-orbit-tab strong {
    font-size: 14px;
  }
}

/* Sdn. Bhd. full-page visual system */
.registration-sdnbhd-page {
  --reg-ink: #0a2342;
  --reg-copy: #334155;
  --reg-muted: #526273;
  --reg-mint: #eaf7f3;
  --reg-sky: #eaf4fb;
  --reg-gold: #fff4d8;
  --reg-coral: #fcedea;
  --reg-neutral: #f4f7fa;
}

.registration-sdnbhd-page main p,
.registration-sdnbhd-page main li,
.registration-sdnbhd-page main td,
.registration-sdnbhd-page main [role="cell"] {
  font-size: 16px;
  line-height: 1.7;
}

.registration-sdnbhd-page main h2 {
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  line-height: 1.18;
}

.registration-sdnbhd-page main h3 {
  letter-spacing: 0;
}

.registration-sdnbhd-page .hero-premium {
  padding-top: clamp(76px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.registration-sdnbhd-page .premium-title {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.08;
}

.registration-sdnbhd-page .hero-subtitle {
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.registration-sdnbhd-page .hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.trust-cards-section {
  padding: 22px 0;
  background: #fff;
}

.registration-sdnbhd-page .trust-bar {
  gap: 12px;
  border: 0;
}

.registration-sdnbhd-page .trust-item-premium {
  min-width: 0;
  padding: 20px 18px;
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 8px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.registration-sdnbhd-page .trust-item-premium:nth-child(1) { background: var(--reg-mint); }
.registration-sdnbhd-page .trust-item-premium:nth-child(2),
.registration-sdnbhd-page .trust-item-premium:nth-child(3),
.registration-sdnbhd-page .trust-item-premium:nth-child(4) { background: #fff; }

.registration-sdnbhd-page .trust-item-premium:hover {
  border-color: rgba(0, 139, 114, 0.32);
  transform: translateY(-3px);
}

.registration-sdnbhd-page .trust-bar .trust-value {
  color: var(--reg-ink);
  font-size: 18px;
  font-weight: 850;
}

.registration-sdnbhd-page .trust-label,
.registration-sdnbhd-page .trust-label a {
  margin-top: 7px;
  color: var(--reg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.quick-flow-section {
  border: 0;
  background: var(--reg-neutral) !important;
}

.quick-flow-section .quick-start-layout {
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 1.8fr) auto;
  padding-top: 38px;
  padding-bottom: 38px;
}

.quick-flow-section .eyebrow {
  color: #8c5a00;
}

.quick-flow-section .quick-start-steps li + li {
  border-color: rgba(140, 90, 0, 0.22);
}

.quick-flow-section .quick-start-steps li > span,
.quick-flow-section .quick-start-link {
  color: #7a5000;
}

.quick-flow-section .quick-start-steps small {
  color: var(--reg-copy);
  font-size: 14px;
}

.offer-section {
  background: #fff !important;
}

.offer-section .registration-offer {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas: "price copy" "includes includes";
  gap: clamp(34px, 6vw, 80px);
}

.offer-section .registration-price-panel {
  grid-area: price;
  align-self: stretch;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background: #fff;
  box-shadow: 0 22px 55px rgba(10, 35, 66, 0.1);
}

.offer-section .registration-offer-copy {
  grid-area: copy;
  align-self: center;
}

.offer-section .registration-offer-copy .premium-sub-dark {
  color: var(--reg-copy);
  font-size: 17px;
}

.offer-section .offer-includes {
  grid-area: includes;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 12px;
}

.offer-section .offer-includes article {
  min-height: 160px;
  border: 1px solid rgba(10, 35, 66, 0.09);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-section .offer-includes article:nth-child(2),
.offer-section .offer-includes article:nth-child(4),
.offer-section .offer-includes article:nth-child(5) { background: var(--reg-neutral); }

.offer-section .offer-includes article:hover {
  border-color: rgba(0, 139, 114, 0.35);
  transform: translateY(-4px);
}

.offer-section .offer-includes h3 {
  font-size: 18px;
}

.offer-section .offer-includes p {
  color: var(--reg-muted);
  font-size: 15px;
}

.audience-section {
  background: var(--reg-neutral) !important;
}

.audience-section .fit-layout {
  grid-template-columns: 1fr;
  gap: 44px;
}

.audience-section .fit-copy {
  position: static;
  max-width: 780px;
}

.audience-section .fit-copy > p:not(.eyebrow) {
  color: var(--reg-copy);
  font-size: 16px;
}

.audience-section .fit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.audience-section .fit-list article {
  display: block;
  min-height: 235px;
  padding: 28px;
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.audience-section .fit-list article:nth-child(2) { margin-top: 26px; background: #fff; }
.audience-section .fit-list article:nth-child(3) { background: #fff; }
.audience-section .fit-list article:nth-child(4) { margin-top: 26px; background: #fff; }

.audience-section .fit-list article:hover {
  border-color: rgba(0, 139, 114, 0.38);
  transform: translateY(-5px);
}

.audience-section .fit-list article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--reg-ink);
  color: #fff;
  font-size: 14px;
}

.audience-section .fit-list h3 { font-size: 20px; }
.audience-section .fit-list p { color: var(--reg-copy); font-size: 15px; }

.prep-orbit-section {
  overflow: hidden;
  background: #fff;
}

.prep-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  margin-bottom: 64px;
}

.prep-section-head > div:last-child p {
  margin: 0 0 22px;
  color: var(--reg-copy);
}

.prep-orbit-layout {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.prep-orbit {
  position: relative;
  width: 560px;
  height: 560px;
}

.prep-orbit-track {
  position: absolute;
  inset: 82px;
  border: 1px dashed rgba(0, 139, 114, 0.45);
  border-radius: 50%;
  animation: orbitSpin 32s linear infinite;
}

.prep-orbit-track::before,
.prep-orbit-track::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.prep-orbit-track::before { inset: 44px; border: 1px solid rgba(10, 35, 66, 0.1); }
.prep-orbit-track::after { inset: 106px; border: 1px dashed rgba(216, 151, 35, 0.35); }

.prep-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: var(--reg-ink);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 55px rgba(10, 35, 66, 0.22);
}

.prep-orbit-center strong { font-size: 3.4rem; line-height: 1; }
.prep-orbit-center span { font-size: 16px; font-weight: 850; }
.prep-orbit-center small { color: #83e2c8; font-size: 14px; }

.prep-orbit-tab {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: center;
  width: 142px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--reg-ink);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.prep-orbit-tab span { color: #087559; font-size: 14px; font-weight: 900; }
.prep-orbit-tab strong { font-size: 15px; line-height: 1.25; }
.prep-orbit-tab:hover { transform: translateY(-3px); border-color: rgba(0, 139, 114, 0.45); }
.prep-orbit-tab.is-active { border-color: #087559; background: var(--reg-mint); box-shadow: 0 12px 28px rgba(10, 35, 66, 0.13); }
.prep-orbit-tab:focus-visible { outline: 3px solid rgba(0, 139, 114, 0.28); outline-offset: 3px; }

.prep-orbit-tab:nth-of-type(1) { top: 0; left: 50%; transform: translateX(-50%); }
.prep-orbit-tab:nth-of-type(2) { top: 92px; right: 0; }
.prep-orbit-tab:nth-of-type(3) { right: 0; bottom: 92px; }
.prep-orbit-tab:nth-of-type(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.prep-orbit-tab:nth-of-type(5) { bottom: 92px; left: 0; }
.prep-orbit-tab:nth-of-type(6) { top: 92px; left: 0; }
.prep-orbit-tab:nth-of-type(7) { top: 248px; right: -18px; }

.prep-orbit-tab:nth-of-type(1):hover,
.prep-orbit-tab:nth-of-type(4):hover { transform: translateX(-50%) translateY(-3px); }

.prep-panels {
  min-width: 0;
}

.prep-panel {
  min-height: 430px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(10, 35, 66, 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(10, 35, 66, 0.1);
}

.prep-panel:nth-child(n) { background: #fff; }
.prep-panel.is-active { animation: panelSlideIn 0.28s ease both; }
.prep-panel[hidden] { display: none; }
.panel-kicker { color: #087559; font-size: 14px; font-weight: 900; }
.prep-panel h3 { margin: 15px 0 18px; color: var(--reg-ink); font-size: clamp(1.55rem, 2.5vw, 2.15rem); line-height: 1.2; }
.prep-panel p, .prep-panel li { color: var(--reg-copy); }
.prep-panel ul { display: grid; gap: 8px; padding-left: 21px; }
.prep-panel li::marker { color: #087559; }
.panel-note { padding: 14px 16px; border-left: 3px solid #087559; background: rgba(255,255,255,.6); }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes panelSlideIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }

.registration-sdnbhd-page .address-guide {
  background: var(--reg-mint);
  color: var(--reg-ink);
}

.address-guide .premium-heading-light,
.address-guide .address-guide-head > p,
.address-guide .address-options h3,
.address-guide .address-included strong {
  color: var(--reg-ink);
}

.address-guide .address-guide-head > p,
.address-guide .address-included p,
.address-guide .address-options p {
  color: var(--reg-copy);
}

.address-primary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}

.address-primary-cards article {
  padding: 30px;
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 8px;
  background: #fff;
}

.address-primary-cards article:nth-child(2) { background: #fff; }
.address-primary-cards span { color: #087559; font-size: 14px; font-weight: 900; }
.address-primary-cards h3 { margin: 9px 0 2px; color: var(--reg-ink); font-size: 24px; }
.address-primary-cards strong { color: #087559; font-size: 14px; }
.address-primary-cards p { margin: 16px 0 0; color: var(--reg-copy); }

.address-guide .address-comparison {
  overflow: hidden;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 8px;
  background: #fff;
}

.address-guide .address-row { border-color: rgba(10, 35, 66, 0.1); }
.address-guide .address-row > * { color: var(--reg-copy); border-color: rgba(10, 35, 66, 0.1); }
.address-guide .address-row > :first-child,
.address-guide .address-row-head strong { color: var(--reg-ink); }
.address-guide .address-row-head { background: var(--reg-neutral); }
.address-guide .address-row-head small { color: #087559; font-size: 14px; }
.address-guide .status-yes { display: inline-block; padding: 4px 9px; border-radius: 4px; background: #dff5ed; color: #087559; font-size: 14px; line-height: 1.4; }
.address-guide .address-included span { color: #087559; }
.address-guide .address-foot { padding-top: 28px; border-top: 1px solid rgba(10, 35, 66, 0.13); }

.process-detail-section { background: #fff !important; }
.process-detail-section .incorp-process-list li { padding: 25px 20px; border: 1px solid rgba(10, 35, 66, 0.1); border-radius: 8px; background: #fff; }
.process-detail-section .incorp-process-list li:nth-child(even) { margin-top: 58px; background: #fff; }
.process-detail-section .incorp-process-list::before { top: 45px; background: rgba(10, 35, 66, 0.25); }
.process-detail-section .incorp-process-list li > span { margin-bottom: 28px; background: var(--reg-gold); border-color: #d7b45a; color: var(--reg-ink); }
.process-detail-section .incorp-process-list h3 { font-size: 18px; }
.process-detail-section .incorp-process-list p { color: var(--reg-copy); font-size: 15px; }

.documents-section { background: var(--reg-neutral) !important; }
.documents-section .documents-layout { grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); }
.documents-section .documents-intro { grid-column: 2; grid-row: 1; align-self: center; }
.documents-section .documents-intro > p:not(.eyebrow) { color: var(--reg-copy); }
.documents-section .incorp-doc-list { grid-column: 1; grid-row: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border: 0; }
.documents-section .incorp-doc-list article { display: block; min-height: 220px; padding: 28px; border: 1px solid rgba(10,35,66,.1); border-radius: 8px; background: #fff; transition: transform .22s ease; }
.documents-section .incorp-doc-list article:nth-child(1) { transform: rotate(-1deg); }
.documents-section .incorp-doc-list article:nth-child(2) { transform: rotate(1deg); background: #fff; }
.documents-section .incorp-doc-list article:nth-child(3) { transform: rotate(.8deg); background: var(--reg-mint); }
.documents-section .incorp-doc-list article:nth-child(4) { transform: rotate(-.8deg); background: #fff; }
.documents-section .incorp-doc-list article:hover { transform: translateY(-4px) rotate(0); }
.documents-section .incorp-doc-list article > span { display: inline-block; margin-bottom: 42px; padding: 5px 9px; border-radius: 4px; background: var(--reg-ink); color: #fff; font-size: 14px; }
.documents-section .incorp-doc-list h3 { font-size: 19px; }
.documents-section .incorp-doc-list p { color: var(--reg-copy); font-size: 15px; }

.fee-light-section { background: #fff; }
.fee-light-section .premium-heading-light,
.fee-light-section .premium-sub-light { color: var(--reg-ink); }
.fee-light-section .annual-fees-intro > p { color: var(--reg-copy); }
.fee-light-section .fee-timeline { gap: 16px; border: 0; }
.fee-light-section .fee-stage { padding: 30px; border: 1px solid rgba(10,35,66,.11); border-radius: 8px; background: #fff; color: var(--reg-ink); }
.fee-light-section .fee-stage:nth-child(2) { background: #fff; }
.fee-light-section .fee-stage-featured { background: var(--reg-mint); box-shadow: inset 0 4px 0 #087559; }
.fee-light-section .fee-stage-heading > span { border-color: #087559; color: #087559; }
.fee-light-section .fee-stage-heading small { color: #087559; font-size: 14px; }
.fee-light-section .fee-stage h3,
.fee-light-section .fee-stage-price,
.fee-light-section .fee-calculation b { color: var(--reg-ink); }
.fee-light-section .fee-calculation { border-color: rgba(10,35,66,.12); }
.fee-light-section .fee-calculation > div { border-color: rgba(10,35,66,.12); }
.fee-light-section .fee-calculation span,
.fee-light-section .fee-stage > p,
.fee-light-section .fee-includes li { color: var(--reg-copy); }
.fee-light-section .annual-renewal-banner { border-color: rgba(10,35,66,.12); background: #fff; }
.fee-light-section .annual-renewal-banner span { color: #087559; }
.fee-light-section .annual-renewal-banner strong { color: var(--reg-ink); }
.fee-light-section .annual-renewal-banner small { color: var(--reg-muted); font-size: 14px; }
.fee-light-section .fee-scope-note { border-color: #b88a24; background: var(--reg-neutral); }
.fee-light-section .fee-scope-note strong { color: var(--reg-ink); }
.fee-light-section .fee-scope-note p { color: var(--reg-copy); }

.aftercare-section { background: var(--reg-neutral); }
.post-stage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.post-stage-grid article { min-height: 280px; padding: 30px; border: 1px solid rgba(10,35,66,.1); border-radius: 8px; background: #fff; }
.post-stage-grid article:nth-child(2) { margin-top: 24px; background: #fff; }
.post-stage-grid article:nth-child(3) { background: var(--reg-mint); }
.post-stage-grid article:nth-child(4) { margin-top: 24px; background: #fff; }
.post-stage-grid span { background: var(--reg-ink); color: #fff; }
.post-stage-grid small { display: block; margin: 24px 0 8px; color: #087559; font-size: 14px; font-weight: 900; }
.post-stage-grid h3 { font-size: 20px; }
.post-stage-grid p { color: var(--reg-copy); font-size: 15px; }

.faq-color-section { background: #fff !important; }
.faq-color-section .faq-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-color-section .faq-premium details { align-self: start; border: 1px solid rgba(10,35,66,.1); border-radius: 8px; background: #fff; }
.faq-color-section .faq-premium summary { padding: 22px 24px; font-size: 17px; }
.faq-color-section .faq-premium p { padding: 0 24px 22px; color: var(--reg-copy); font-size: 15px; }

.js [data-reveal] { animation: none; opacity: 0; transform: translateY(24px); }
.js [data-reveal].is-visible { animation: regReveal .55s ease forwards; }
@keyframes regReveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .prep-orbit-layout { grid-template-columns: 470px minmax(0,1fr); gap: 35px; }
  .prep-orbit { width: 470px; height: 520px; transform: scale(.88); transform-origin: left center; }
  .quick-flow-section .quick-start-layout { grid-template-columns: 1fr; }
  .offer-section .offer-includes { grid-template-columns: repeat(3, 1fr); }
  .audience-section .fit-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .prep-section-head,
  .prep-orbit-layout,
  .offer-section .registration-offer,
  .documents-section .documents-layout { grid-template-columns: 1fr; }
  .offer-section .registration-offer { grid-template-areas: "price" "copy" "includes"; }
  .prep-orbit-layout { gap: 26px; }
  .prep-orbit { display: flex; gap: 10px; width: 100%; height: auto; padding: 6px 4px 14px; overflow-x: auto; transform: none; scrollbar-width: thin; }
  .prep-orbit-track, .prep-orbit-center { display: none; }
  .prep-orbit-tab,
  .prep-orbit-tab:nth-of-type(n) { position: static; flex: 0 0 142px; transform: none; }
  .prep-orbit-tab:nth-of-type(n):hover { transform: translateY(-2px); }
  .prep-panel { min-height: 0; }
  .documents-section .documents-intro { grid-column: 1; grid-row: 1; }
  .documents-section .incorp-doc-list { grid-column: 1; grid-row: 2; }
  .post-stage-grid { grid-template-columns: 1fr 1fr; }
  .post-stage-grid article:nth-child(n) { margin-top: 0; }
}

@media (max-width: 700px) {
  .registration-sdnbhd-page main p,
  .registration-sdnbhd-page main li,
  .registration-sdnbhd-page main td,
  .registration-sdnbhd-page main [role="cell"] { font-size: 15px; }
  .registration-sdnbhd-page main h2 { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .registration-sdnbhd-page .trust-bar,
  .offer-section .offer-includes,
  .audience-section .fit-list,
  .address-primary-cards,
  .documents-section .incorp-doc-list,
  .post-stage-grid,
  .faq-color-section .faq-premium { grid-template-columns: 1fr; }
  .registration-sdnbhd-page .trust-item-premium { padding: 18px; }
  .offer-section .registration-price-panel { order: -1; }
  .offer-section .offer-includes article { min-height: 0; }
  .audience-section .fit-list article:nth-child(n) { min-height: 0; margin-top: 0; }
  .prep-section-head { margin-bottom: 34px; }
  .prep-panel { padding: 26px 22px; }
  .share-examples > div { grid-template-columns: 1fr; }
  .address-guide .address-row > :first-child { color: #087559; }
  .address-guide .address-row [data-label]::before { color: var(--reg-ink); }
  .process-detail-section .incorp-process-list li:nth-child(n) { margin-top: 0; }
  .process-detail-section .incorp-process-list::before { top: 18px; }
  .documents-section .incorp-doc-list article:nth-child(n) { min-height: 0; transform: none; }
  .fee-light-section .fee-stage { border-right: 1px solid rgba(10,35,66,.11); }
  .fee-light-section .annual-renewal-banner { padding: 24px 20px; }
  .post-stage-grid article { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .prep-orbit-track,
  .prep-panel.is-active,
  .js [data-reveal].is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.pricing-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 0;
  align-items: center;
  margin-top: 50px;
  padding: 0 20px;
}

.pricing-card-premium {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.side-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.center-card {
  background: #0f2847;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  z-index: 2;
  transform: scale(1.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px 40px;
}

.most-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-premium {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin: 20px 0 10px;
  letter-spacing: -1px;
}

.price-premium small {
  font-size: 1rem;
  color: var(--muted);
}

.price-sub-premium {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.price-sub-dark {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.divider-premium {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.divider-dark {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}

.feature-list-light {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.feature-list-light li {
  position: relative;
  padding-left: 24px;
  color: #475569;
  font-size: 0.95rem;
}

.feature-list-light li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: 800;
}

.feature-list-dark {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.feature-list-dark li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.feature-list-dark li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: 800;
}

.info-box-premium {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
}

.info-icon {
  font-size: 2rem;
}

.info-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.testimonial-elegant {
  margin-top: 40px;
}

.testimonial-elegant-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--soft);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 0;
}

.testimonial-elegant-item p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.7;
}

.author-elegant {
  display: flex;
  flex-direction: column;
}

.author-elegant strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.author-elegant span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-premium {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.faq-premium details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-premium summary {
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}

.faq-premium p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-premium {
  padding: 60px 0;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .pricing-premium-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .center-card {
    transform: none;
  }
  .timeline-premium {
    grid-template-columns: 1fr;
  }
  .timeline-step-premium::before {
    top: 0;
    left: 20px;
    right: auto;
    bottom: -30px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
    animation-name: processLineGrowY;
  }
  .timeline-step-premium {
    padding-top: 0;
    padding-left: 60px;
  }
}

/* --- Phase 1 & 2 Refinement Styles --- */

/* Fix 1: Pricing visibility */
.center-card h3 {
  color: var(--white);
}

/* Fix 2: Requirements Icons -> Numbers */
.req-number {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

/* Fix 4: Hero Mockup Refinement */
.cert-mockup {
  background: #fdfdfd;
  border: 1px solid #e2e8f0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.cert-header {
  text-align: center;
  padding: 30px 20px 20px;
  border-bottom: 2px solid var(--navy);
}
.cert-title {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.cert-title small {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted);
}
.cert-body {
  padding: 30px;
  text-align: center;
}
.cert-name {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.cert-text {
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.cert-company-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 5px;
  filter: blur(3px); /* To simulate sensitive data blur */
}
.cert-reg-no {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  filter: blur(3px);
}
.mockup-seal-premium {
  right: 30px;
  bottom: 30px;
}

/* Fix 5: Editorial Layout for Benefits */
.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.editorial-text {
  position: sticky;
  top: 100px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.editorial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.editorial-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.editorial-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial-text {
    position: static;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

/* Fix 6: Testimonials Authenticity */
.author-elegant {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row !important;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--soft);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* --- VSG registration page visual polish --- */
.hero-premium {
  padding: 118px 0 94px;
  background: #0a2342;
}

.hero-premium::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 166, 126, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(10, 35, 66, 0.98) 0%, rgba(10, 35, 66, 0.9) 48%, rgba(10, 35, 66, 0.66) 100%),
    url("hero-office.png") center / cover no-repeat;
}

.hero-sales-grid {
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.hero-sales-content {
  max-width: 640px;
}

.hero-subtitle {
  margin: -4px 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
}

.cert-mockup {
  width: min(520px, 100%);
  margin-left: auto;
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(4px);
}

.cert-mockup:hover {
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) translateY(-3px);
}

.cert-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.22);
}

.cert-body {
  min-height: 320px;
  padding: 34px 38px 42px;
  background:
    linear-gradient(135deg, rgba(198, 146, 46, 0.1), transparent 32%),
    repeating-linear-gradient(0deg, rgba(15, 118, 110, 0.035), rgba(15, 118, 110, 0.035) 1px, transparent 1px, transparent 34px),
    #fff;
}

.cert-name {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.mockup-seal-premium {
  width: 92px;
  height: 92px;
  border-width: 3px;
  opacity: 0.82;
  font-size: 0.95rem;
}

.trust-bar-section {
  padding: 24px 0;
  border-bottom: 0;
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.06);
}

.trust-bar {
  gap: 0;
}

.trust-item-premium {
  position: relative;
  padding: 4px 18px;
}

.trust-item-premium + .trust-item-premium::before {
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: var(--line);
  content: "";
}

.trust-value {
  color: #0a2342;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.trust-label {
  margin-top: 4px;
  color: #526173;
  text-transform: none;
  letter-spacing: 0;
}

.editorial-layout {
  margin-top: 0;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
}

.editorial-text {
  padding-top: 12px;
}

.editorial-card {
  border-radius: 8px;
  padding: 34px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.editorial-card:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 44px rgba(16, 35, 63, 0.08);
  transform: translateY(-3px);
}

.editorial-card .benefit-number {
  color: #0f766e;
  font-size: clamp(2.7rem, 5vw, 4rem);
  margin-bottom: 20px;
}

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

.req-premium-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 34px 26px 30px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(16, 35, 63, 0.05);
  text-align: left;
}

.req-premium-item::after {
  position: absolute;
  right: -22px;
  top: -30px;
  color: rgba(15, 118, 110, 0.08);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-step);
}

.req-number {
  width: auto;
  height: auto;
  margin: 0 0 42px;
  background: transparent;
  color: #0f766e;
  justify-content: flex-start;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.req-premium-item h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: #0a2342;
}

.req-premium-item p {
  position: relative;
  color: #566579;
  line-height: 1.68;
}

.section-navy-gradient {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 166, 126, 0.2), transparent 34%),
    linear-gradient(135deg, #0a2342 0%, #102f54 100%);
}

.premium-badge-card {
  min-width: min(360px, 100%);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 166, 126, 0.17), transparent 30%),
    #0a2342;
  overflow: hidden;
}

.pricing-premium-grid {
  gap: 22px;
  padding: 0;
  align-items: stretch;
}

.pricing-card-premium {
  min-height: 560px;
  border-radius: 10px;
  padding: 38px;
}

.side-card {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.14);
}

.center-card {
  background: linear-gradient(180deg, #12365c 0%, #0d2948 100%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(-22px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.center-card h3,
.center-card .price-premium,
.center-card strong {
  color: #fff;
}

.center-card .text-emerald {
  color: #22c59a;
}

.most-popular-badge {
  top: 24px;
  left: auto;
  right: 28px;
  transform: none;
  border-radius: 999px;
  background: #00a67e;
  box-shadow: 0 10px 24px rgba(0, 166, 126, 0.28);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.side-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff5f1;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-premium {
  margin-top: 34px;
  letter-spacing: 0;
}

.testimonial-elegant {
  gap: 22px;
}

.testimonial-elegant-item {
  border-radius: 10px;
  padding: 34px;
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.06);
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: #c6922e;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.quote-icon {
  color: rgba(15, 118, 110, 0.08);
}

.author-avatar {
  background: #0a2342;
  color: #fff;
}

.faq-premium {
  width: min(940px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.faq-premium details {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.04);
}

.faq-premium summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.faq-premium summary::after {
  color: #0f766e;
  font-size: 1.4rem;
  font-weight: 700;
  content: "+";
}

.faq-premium details[open] summary::after {
  content: "-";
}

@media (max-width: 900px) {
  .hero-premium {
    padding: 62px 0 54px;
  }

  .hero-sales-grid,
  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .editorial-text {
    position: static;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cert-mockup {
    margin: 12px auto 0;
    transform: none;
  }

  .cert-mockup:hover {
    transform: translateY(-2px);
  }

  .trust-item-premium + .trust-item-premium::before {
    display: none;
  }

  .req-premium-item {
    min-height: auto;
  }

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

  .center-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-sales-grid {
    gap: 30px;
  }

  .premium-title {
    font-size: clamp(2.7rem, 14vw, 3.4rem);
  }

  .hero-subtitle {
    font-size: 1.45rem;
  }

  .cert-body {
    min-height: 250px;
    padding: 26px 24px 34px;
  }

  .cert-text {
    font-size: 0.82rem;
  }

  .mockup-seal-premium {
    width: 72px;
    height: 72px;
    right: 22px;
    bottom: 22px;
    font-size: 0.8rem;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .req-premium-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .req-premium-item,
  .pricing-card-premium,
  .testimonial-elegant-item {
    padding: 28px 24px;
  }

  .pricing-card-premium {
    min-height: auto;
  }
}

/* --- VSG Difference section redesign --- */
.vsg-difference-section {
  position: relative;
  overflow: hidden;
}

.vsg-difference-section::after {
  position: absolute;
  right: -18vw;
  bottom: -34vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  content: "";
}

.vsg-difference {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.vsg-difference-copy {
  position: sticky;
  top: 110px;
}

.vsg-difference-copy .premium-heading-light {
  max-width: 520px;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.vsg-difference-copy .premium-sub-light {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.vsg-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.vsg-proof-strip div {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.vsg-proof-strip strong,
.vsg-proof-strip span {
  display: block;
}

.vsg-proof-strip strong {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.vsg-proof-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.vsg-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vsg-service-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.vsg-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 126, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.vsg-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(0, 166, 126, 0.16);
  color: #2be0b1;
  font-weight: 900;
  font-size: 0.82rem;
}

.vsg-service-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.22rem;
}

.vsg-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

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

  .vsg-difference-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .vsg-proof-strip,
  .vsg-service-grid {
    grid-template-columns: 1fr;
  }

  .vsg-service-card {
    min-height: auto;
  }
}

/* --- Registration customer education flow --- */
.registration-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  align-items: start;
}

.registration-offer-copy {
  max-width: 720px;
}

.registration-price-panel {
  position: sticky;
  top: 110px;
  padding: 34px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 10px;
  background:
    radial-gradient(circle at top right, rgba(0, 166, 126, 0.13), transparent 42%),
    #fff;
  box-shadow: 0 24px 70px rgba(16, 35, 63, 0.1);
}

.registration-price-panel span,
.registration-price-panel strong,
.registration-price-panel p {
  display: block;
}

.registration-price-panel span {
  color: var(--teal);
  font-weight: 900;
}

.registration-price-panel strong {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1;
}

.registration-price-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.offer-includes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.offer-includes article,
.document-grid article,
.post-compliance-grid article {
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(16, 35, 63, 0.05);
}

.offer-includes article {
  padding: 24px;
}

.offer-includes h3,
.document-grid h3,
.post-compliance-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.offer-includes p,
.document-grid p,
.post-compliance-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.document-grid article {
  padding: 32px;
}

.document-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dff5f1;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.secretary-explainer {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: start;
}

.secretary-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.secretary-package-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.secretary-package-card.featured {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 166, 126, 0.38);
}

.secretary-package-card span,
.secretary-package-card strong {
  display: block;
}

.secretary-package-card span {
  color: #2be0b1;
  font-weight: 900;
}

.secretary-package-card strong {
  margin: 18px 0 10px;
  font-size: 3rem;
  line-height: 1;
}

.secretary-package-card small {
  font-size: 1rem;
}

.secretary-package-card p,
.secretary-package-card li {
  color: rgba(255, 255, 255, 0.72);
}

.secretary-package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.secretary-package-card li {
  position: relative;
  padding-left: 22px;
}

.secretary-package-card li::before {
  position: absolute;
  left: 0;
  color: #2be0b1;
  font-weight: 900;
  content: "✓";
}

.post-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.post-compliance-grid article {
  padding: 28px;
}

.post-compliance-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.center-actions {
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .registration-offer,
  .secretary-explainer {
    grid-template-columns: 1fr;
  }

  .registration-price-panel {
    position: static;
  }

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

  .document-grid,
  .post-compliance-grid,
  .secretary-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .offer-includes {
    grid-template-columns: 1fr;
  }

  .registration-price-panel,
  .offer-includes article,
  .document-grid article,
  .secretary-package-card,
  .post-compliance-grid article {
    padding: 26px 22px;
  }
}

/* --- Requirement cards with visual icons --- */
.req-premium-grid {
  align-items: stretch;
}

.req-premium-item {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  border: 0;
  box-shadow: 0 22px 58px rgba(16, 35, 63, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.req-premium-item:nth-child(1) {
  background: linear-gradient(145deg, #ffffff 0%, #ecfdf5 100%);
}

.req-premium-item:nth-child(2) {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
}

.req-premium-item:nth-child(3) {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
}

.req-premium-item:nth-child(4) {
  background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
}

.req-premium-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(16, 35, 63, 0.12);
}

.req-visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 22px;
}

.req-visual svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.req-visual-name {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.12);
}

.req-visual-id {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.req-visual-address {
  color: #c2410c;
  background: rgba(194, 65, 12, 0.12);
}

.req-visual-business {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
}

.req-premium-item .req-number {
  position: absolute;
  top: 28px;
  right: 26px;
  margin: 0;
  opacity: 0.78;
}

.req-premium-item h3,
.req-premium-item p {
  z-index: 1;
}

.req-premium-item h3 {
  margin-top: auto;
  font-size: 1.35rem;
}

.req-premium-item p {
  max-width: 220px;
}

@media (max-width: 560px) {
  .req-premium-item {
    min-height: 230px;
  }
}

/* --- FAQ rich text should match the admin Quill editor output --- */
.faq-answer-content {
  color: #0f2746;
  font-size: 16px;
  line-height: 1.42;
}

.faq-answer-content p {
  margin: 0;
}

.faq-answer-content h1,
.faq-answer-content h2,
.faq-answer-content h3,
.faq-answer-content h4,
.faq-answer-content h5,
.faq-answer-content h6 {
  color: inherit;
  font-weight: 700;
  line-height: 1.2;
}

.faq-answer-content h1 { font-size: 2em; margin: 0.67em 0; }
.faq-answer-content h2 { font-size: 1.5em; margin: 0.83em 0; }
.faq-answer-content h3 { font-size: 1.17em; margin: 1em 0; }
.faq-answer-content h4 { font-size: 1em; margin: 1.33em 0; }

.faq-answer-content ul,
.faq-answer-content ol {
  margin: 0;
  padding-left: 1.5em;
}

.faq-answer-content li {
  margin: 0;
  padding-left: 0;
}

.faq-answer-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 8px 0;
  border-radius: 0;
}

.faq-answer-content .ql-size-small { font-size: 0.75em; }
.faq-answer-content .ql-size-large { font-size: 1.5em; }
.faq-answer-content .ql-size-huge { font-size: 2.5em; }
.faq-answer-content .ql-align-center { text-align: center; }
.faq-answer-content .ql-align-right { text-align: right; }
.faq-answer-content .ql-align-justify { text-align: justify; }

/* --- Home page service entry redesign --- */
.home-entry-grid,
.service-overview-grid,
.home-proof-grid {
  display: grid;
  gap: 20px;
}

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

.home-entry-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(16, 35, 63, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-entry-card::after {
  position: absolute;
  right: -22px;
  top: -28px;
  color: rgba(15, 118, 110, 0.08);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  content: attr(data-large);
}

.home-entry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 76px rgba(16, 35, 63, 0.11);
}

.home-entry-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dff5f1;
  color: var(--teal);
  font-weight: 900;
}

.home-entry-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
}

.home-entry-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.72;
}

.home-entry-card .btn {
  margin-top: auto;
}

.service-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-overview-grid article,
.home-proof-grid div {
  padding: 26px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 63, 0.05);
}

.service-overview-grid strong,
.service-overview-grid span,
.home-proof-grid strong,
.home-proof-grid span {
  display: block;
}

.service-overview-grid strong,
.home-proof-grid strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
}

.service-overview-grid span,
.home-proof-grid span {
  color: var(--muted);
  line-height: 1.65;
}

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

.vsg-clarity-section {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.vsg-clarity-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.98), rgba(16, 35, 63, 0.95)),
    linear-gradient(90deg, rgba(0, 166, 126, 0.18), transparent 60%);
  box-shadow: 0 26px 70px rgba(16, 35, 63, 0.2);
}

.vsg-clarity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 8px 20px 8px 0;
}

.vsg-clarity-copy .eyebrow {
  color: #2be0b1;
}

.vsg-clarity-copy h2 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.vsg-clarity-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.75;
}

.vsg-clarity-list {
  display: grid;
  gap: 0;
  min-width: 0;
  padding-left: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vsg-clarity-list div {
  display: grid;
  grid-template-columns: 54px minmax(132px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
}

.vsg-clarity-list span {
  color: #2be0b1;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
}

.vsg-clarity-list strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.25;
  min-width: 0;
}

.vsg-clarity-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  min-width: 0;
}

@media (max-width: 900px) {
  .home-entry-grid,
  .service-overview-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-entry-card {
    min-height: auto;
  }

  .vsg-clarity-section {
    background: #f8fafc;
  }

  .vsg-clarity-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px 20px;
    border-radius: 10px;
  }

  .vsg-clarity-copy {
    position: static;
    padding: 0;
  }

  .vsg-clarity-list {
    padding-left: 0;
    border-left: 0;
  }

  .vsg-clarity-list div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 22px 0;
  }

  .vsg-clarity-list p {
    grid-column: 2;
  }
}

/* --- Pricing service catalogue redesign --- */
.pricing-hero {
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.98), rgba(16, 35, 63, 0.94)),
    linear-gradient(90deg, rgba(0, 166, 126, 0.14), transparent 55%);
}

.pricing-catalog-section {
  padding-top: 70px;
}

.pricing-catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(16, 35, 63, 0.06);
}

.pricing-catalog-intro h2 {
  margin-bottom: 10px;
}

.pricing-catalog-intro p:last-child {
  width: min(720px, 100%);
  margin-bottom: 0;
  color: var(--muted);
}

.service-accordion {
  gap: 12px;
}

.service-accordion .accordion-item {
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(16, 35, 63, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-accordion .accordion-item:hover {
  border-color: rgba(16, 35, 63, 0.2);
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.07);
}

.service-accordion .accordion-item.open {
  border-color: rgba(0, 166, 126, 0.32);
}

.service-accordion-button {
  min-height: 96px;
  padding: 20px 24px;
}

.service-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.service-title > span {
  min-width: 0;
}

.service-copy strong,
.service-copy em,
.service-copy small {
  display: block;
}

.service-copy strong {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.22;
}

.service-copy em {
  width: fit-content;
  margin-top: 7px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: #f2fbf9;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.service-copy small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-line-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 14px;
  color: var(--navy);
  background:
    linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 12px 24px rgba(16, 35, 63, 0.06);
}

.service-line-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accordion-item.open .service-line-icon {
  border-color: rgba(0, 166, 126, 0.26);
  color: var(--teal);
  background: #f7fcfb;
}

.service-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 10px;
  color: var(--navy);
  background: #f8fafc;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: none;
}

.service-icon-annual,
.service-icon-change,
.service-icon-capital,
.service-icon-people,
.service-icon-fye,
.service-icon-resolution,
.service-icon-delivery,
.service-icon-close,
.service-icon-business,
.service-icon-other {
  background: #f8fafc;
  color: var(--navy);
}

.accordion-item.open .service-icon {
  border-color: rgba(0, 166, 126, 0.28);
  color: var(--teal);
  background: #f2fbf9;
}

.accordion-arrow {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: #fff;
}

.accordion-arrow::before,
.accordion-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item.open .accordion-arrow {
  border-color: var(--teal);
  background: var(--teal);
}

.accordion-item.open .accordion-arrow::before,
.accordion-item.open .accordion-arrow::after {
  background: var(--white);
}

.accordion-item.open .accordion-arrow::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-accordion .accordion-content {
  padding: 0 24px 28px 94px;
}

.service-accordion .table-wrap {
  border-color: rgba(16, 35, 63, 0.1);
  border-radius: 10px;
  background: #fff;
}

.service-accordion th {
  color: #334155;
  background: #f8fafc;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-accordion td {
  line-height: 1.55;
}

.service-accordion td:first-child {
  color: var(--navy);
  font-weight: 760;
}

.service-accordion td:nth-child(2) {
  white-space: nowrap;
  color: var(--navy);
  font-weight: 850;
}

.service-accordion .mini-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(0, 166, 126, 0.24);
  border-radius: 999px;
  color: var(--teal);
  background: #f7fcfb;
  font-size: 0.92rem;
}

.service-accordion .mini-cta:hover {
  color: #fff;
  background: var(--teal);
}

@media (max-width: 760px) {
  .pricing-catalog-intro {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px 20px;
  }

  .pricing-catalog-intro .btn {
    width: 100%;
  }

  .service-accordion-button {
    align-items: flex-start;
    min-height: auto;
    padding: 16px;
  }

  .service-title {
    gap: 12px;
  }

  .service-line-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .service-line-icon svg {
    width: 21px;
    height: 21px;
  }

  .service-copy strong {
    font-size: 1rem;
  }

  .service-copy em {
    white-space: normal;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .service-title small {
    font-size: 0.82rem;
  }

  .accordion-arrow {
    width: 30px;
    height: 30px;
  }

  .service-accordion .accordion-content {
    padding: 0 16px 18px;
  }
}
/* --- Registration architecture comparison --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-submenu-toggle {
  display: grid;
  place-items: center;
  width: 26px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font: inherit;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-submenu-toggle,
.nav-dropdown:focus-within .nav-submenu-toggle,
.nav-dropdown.active .nav-parent {
  color: var(--teal);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: grid;
  width: 330px;
  padding: 10px;
  border: 1px solid rgba(15, 39, 67, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15, 39, 67, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  inset: -20px 0 auto;
  height: 20px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.submenu-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--navy);
  cursor: pointer;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  background: #eef8f5;
  color: var(--teal);
}

.nav-submenu strong {
  font-size: 0.92rem;
  line-height: 1.3;
}

.nav-submenu small {
  color: #718096;
  font-size: 0.76rem;
  font-weight: 550;
}

.entity-comparison-page {
  color: #24364c;
}

.entity-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 82px;
  background:
    linear-gradient(115deg, rgba(8, 28, 52, 0.98), rgba(12, 49, 73, 0.96)),
    url("hero-office.png") center / cover no-repeat;
  color: #fff;
}

.entity-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.025), 0 0 0 144px rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.entity-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.entity-hero h1 {
  max-width: 760px;
  margin: 14px 0 24px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.entity-hero-lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.1rem;
  line-height: 1.85;
}

.entity-hero-summary {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.entity-hero-summary > span {
  display: block;
  margin-bottom: 14px;
  color: #5ee2bd;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.entity-hero-summary ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.entity-hero-summary li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.entity-hero-summary b {
  color: #5ee2bd;
  font-size: 0.8rem;
}

.entity-hero-summary strong,
.entity-hero-summary small {
  display: block;
}

.entity-hero-summary strong {
  color: #fff;
}

.entity-hero-summary small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.57);
}

.entity-answer-strip {
  background: var(--teal);
  color: #fff;
}

.entity-answer-strip .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
}

.entity-answer-strip strong {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.02rem;
}

.entity-answer-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.entity-section-head {
  align-items: end;
  margin-bottom: 38px;
}

.entity-section-head h2 {
  max-width: 760px;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.1;
}

.entity-section-head > p {
  max-width: 450px;
}

.entity-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #cfd8e3;
  border-bottom: 1px solid #cfd8e3;
}

.entity-overview-grid article {
  position: relative;
  min-height: 310px;
  padding: 32px 24px 28px;
  border-right: 1px solid #cfd8e3;
}

.entity-overview-grid article:last-child {
  border-right: 0;
}

.entity-overview-grid article.recommended {
  background: var(--navy);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(15, 39, 67, 0.16);
}

.entity-overview-grid .entity-index {
  color: #9aa8b8;
  font-size: 0.78rem;
  font-weight: 850;
}

.entity-overview-grid small {
  display: block;
  min-height: 36px;
  margin: 30px 0 5px;
  color: #7b8999;
  font-size: 0.72rem;
  line-height: 1.35;
}

.entity-overview-grid h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 1.35rem;
}

.entity-overview-grid p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.entity-overview-grid article > strong,
.entity-overview-grid article > a {
  display: block;
  margin-top: 24px;
  color: var(--teal);
  font-size: 0.82rem;
  line-height: 1.5;
}

.entity-overview-grid .recommended h3,
.entity-overview-grid .recommended a {
  color: #fff;
}

.entity-overview-grid .recommended p,
.entity-overview-grid .recommended small {
  color: rgba(255, 255, 255, 0.7);
}

.entity-badge {
  position: absolute;
  top: -14px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
}

.entity-mobile-switcher {
  display: none;
}

.entity-table-wrap {
  overflow-x: auto;
  border: 1px solid #d5dde7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 39, 67, 0.07);
}

.entity-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.entity-table th,
.entity-table td {
  padding: 18px 16px;
  border-right: 1px solid #e2e8ef;
  border-bottom: 1px solid #e2e8ef;
  text-align: left;
  vertical-align: top;
  font-size: 0.86rem;
  line-height: 1.55;
}

.entity-table tr:last-child th,
.entity-table tr:last-child td {
  border-bottom: 0;
}

.entity-table th:last-child,
.entity-table td:last-child {
  border-right: 0;
}

.entity-table thead th {
  padding-top: 21px;
  padding-bottom: 21px;
  background: var(--navy);
  color: #fff;
  font-size: 0.91rem;
}

.entity-table thead th:first-child {
  width: 165px;
}

.entity-table thead small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 550;
}

.entity-table tbody th {
  background: #f4f7fa;
  color: var(--navy);
  font-weight: 800;
}

.entity-table .featured-col {
  background: #e8f6f2;
}

.entity-table thead .featured-col {
  background: var(--teal);
}

.status-yes,
.status-no {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 850;
}

.status-yes {
  background: #dff5ed;
  color: #087559;
}

.status-no {
  background: #f2f4f7;
  color: #677483;
}

.tax-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  margin-bottom: 28px;
}

.tax-explainer {
  padding: 38px;
  border: 1px solid #d8e0e8;
  background: #fff;
}

.tax-explainer + .tax-explainer {
  border-left: 0;
}

.tax-explainer.accent {
  background: var(--navy);
  color: #fff;
}

.tax-explainer > span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
}

.tax-explainer h3 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 1.5rem;
}

.tax-explainer.accent h3 {
  color: #fff;
}

.tax-explainer.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.compact-table-wrap {
  box-shadow: none;
}

.entity-table.compact th,
.entity-table.compact td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.liability-section {
  background: #0d2540;
  color: #fff;
}

.liability-section .entity-section-head h2,
.liability-section .entity-section-head > p {
  color: #fff;
}

.liability-section .entity-section-head > p {
  opacity: 0.66;
}

.liability-spectrum {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.liability-spectrum article {
  padding: 36px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.liability-spectrum article:last-child {
  border-right: 0;
  background: rgba(20, 167, 128, 0.13);
}

.liability-spectrum span {
  color: #5ee2bd;
  font-size: 0.75rem;
  font-weight: 850;
}

.liability-spectrum h3 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: 1.35rem;
}

.liability-spectrum p {
  color: rgba(255, 255, 255, 0.67);
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.growth-grid article {
  min-height: 245px;
  padding: 28px 24px;
  border-top: 3px solid #cfd8e3;
  background: #f5f7fa;
}

.growth-grid article.growth-featured {
  border-color: var(--teal);
  background: #e9f7f3;
}

.growth-grid span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
}

.growth-grid h3 {
  margin: 20px 0 12px;
  color: var(--navy);
}

.growth-grid p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.entity-decision-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.entity-decision-copy {
  position: sticky;
  top: 110px;
}

.entity-decision-copy h2 {
  margin: 10px 0 20px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.entity-decision-copy > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.decision-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 29px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.decision-list article > span {
  color: #5ee2bd;
  font-size: 0.8rem;
  font-weight: 850;
}

.decision-list h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 1.2rem;
}

.decision-list p {
  color: rgba(255, 255, 255, 0.64);
}

.decision-list article.recommended {
  margin: 8px -26px;
  padding: 28px 26px;
  border: 1px solid rgba(94, 226, 189, 0.3);
  background: rgba(94, 226, 189, 0.08);
}

.decision-list .btn {
  margin-top: 18px;
}

.entity-source-box {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  padding: 38px 0;
  border-top: 1px solid #d4dce5;
  border-bottom: 1px solid #d4dce5;
}

.entity-source-box h2 {
  margin-top: 8px;
  color: var(--navy);
}

.entity-disclaimer {
  margin-top: 13px;
  color: #748092;
  font-size: 0.84rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.source-links a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .entity-overview-grid,
  .growth-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entity-overview-grid article {
    border-bottom: 1px solid #cfd8e3;
  }

  .entity-overview-grid article.recommended {
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-dropdown-trigger {
    justify-content: space-between;
  }

  .nav-dropdown-trigger .nav-parent {
    flex: 1;
  }

  .nav-submenu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid #dbe2e9;
    border-radius: 6px;
  }

  .nav-dropdown.submenu-open .nav-submenu-toggle {
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: static;
    display: none;
    width: auto;
    margin: 0 0 8px;
    padding: 5px 0 5px 16px;
    border: 0;
    border-left: 2px solid #dbe4eb;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: none;
    transform: none;
  }

  .nav-dropdown.submenu-open .nav-submenu,
  .nav-dropdown.submenu-open:hover .nav-submenu,
  .nav-dropdown.submenu-open:focus-within .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    padding: 10px 12px;
  }

  .entity-hero {
    padding: 66px 0;
  }

  .entity-hero-grid,
  .entity-decision-grid,
  .entity-source-box {
    grid-template-columns: 1fr;
  }

  .entity-hero-summary {
    max-width: 640px;
  }

  .entity-section-head {
    align-items: start;
  }

  .entity-mobile-switcher {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 12px;
    padding-bottom: 4px;
  }

  .entity-mobile-switcher button {
    min-height: 43px;
    padding: 8px 10px;
    border: 1px solid #ccd6df;
    border-radius: 6px;
    background: #fff;
    color: #536174;
    font-weight: 750;
    white-space: nowrap;
    cursor: pointer;
  }

  .entity-mobile-switcher button.active {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
  }

  .entity-table-wrap {
    overflow: visible;
  }

  .entity-table {
    min-width: 0;
    table-layout: auto;
  }

  .entity-table .entity-col {
    display: none;
  }

  .entity-table[data-active-entity="sole"] .col-sole,
  .entity-table[data-active-entity="partnership"] .col-partnership,
  .entity-table[data-active-entity="llp"] .col-llp,
  .entity-table[data-active-entity="sdnbhd"] .col-sdnbhd,
  .entity-table[data-active-entity="berhad"] .col-berhad {
    display: table-cell;
  }

  .entity-table th:first-child {
    width: 36%;
  }

  .entity-table th,
  .entity-table td {
    width: auto;
    padding: 15px 13px;
  }

  .tax-layout,
  .liability-spectrum {
    grid-template-columns: 1fr;
  }

  .tax-explainer + .tax-explainer {
    border-top: 0;
    border-left: 1px solid #d8e0e8;
  }

  .liability-spectrum article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .liability-spectrum article:last-child {
    border-bottom: 0;
  }

  .entity-decision-copy {
    position: static;
  }

  .decision-list article.recommended {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .entity-hero h1 {
    font-size: 3rem;
  }

  .entity-hero-grid {
    gap: 38px;
  }

  .entity-hero-summary {
    padding: 22px;
  }

  .entity-answer-strip .container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .entity-answer-strip strong {
    padding-right: 0;
    padding-bottom: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .entity-overview-grid,
  .growth-grid {
    grid-template-columns: 1fr;
  }

  .entity-overview-grid article {
    min-height: 0;
    border-right: 0;
  }

  .entity-overview-grid small {
    min-height: 0;
  }

  .tax-explainer {
    padding: 28px 24px;
  }

  .entity-table th,
  .entity-table td {
    font-size: 0.8rem;
  }

  .entity-table thead th:first-child {
    width: 39%;
  }

  .decision-list article,
  .decision-list article.recommended {
    grid-template-columns: 34px 1fr;
    margin-right: 0;
    margin-left: 0;
  }

  .entity-source-box {
    gap: 28px;
  }
}
/* --- Sdn. Bhd. fee timeline --- */
.registration-price-meta {
  display: grid;
  gap: 3px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: #eef8f5;
}

.registration-price-meta b {
  color: var(--navy);
  font-size: 1rem;
}

.registration-price-meta small {
  color: var(--muted);
  font-weight: 650;
}

.annual-fees-section {
  overflow: hidden;
}

.annual-fees-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
  margin-bottom: 46px;
}

.annual-fees-intro h2 {
  max-width: 760px;
  margin-top: 10px;
}

.annual-fees-intro > p {
  margin: 0;
}

.fee-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fee-stage {
  min-width: 0;
  padding: 34px 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.fee-stage:last-child {
  border-right: 0;
}

.fee-stage-featured {
  background: rgba(43, 224, 177, 0.09);
  box-shadow: inset 0 3px 0 #2be0b1;
}

.fee-stage-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fee-stage-heading > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(43, 224, 177, 0.5);
  border-radius: 50%;
  color: #5ee2bd;
  font-size: 0.75rem;
  font-weight: 900;
}

.fee-stage-heading small {
  color: #5ee2bd;
  font-size: 0.76rem;
  font-weight: 850;
}

.fee-stage h3 {
  margin: 26px 0 10px;
  color: #fff;
  font-size: 1.18rem;
}

.fee-stage-price {
  display: block;
  color: #fff;
  font-size: clamp(2.55rem, 4vw, 3.6rem);
  line-height: 1;
}

.fee-stage-price small {
  font-size: 0.95rem;
}

.fee-calculation {
  display: grid;
  gap: 0;
  margin: 25px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.fee-calculation > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.fee-calculation span,
.fee-stage > p,
.fee-includes li {
  color: rgba(255, 255, 255, 0.68);
}

.fee-calculation b {
  color: #fff;
  white-space: nowrap;
}

.fee-stage > p {
  margin: 18px 0 0;
  font-size: 0.86rem;
  line-height: 1.7;
}

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

.fee-includes li {
  position: relative;
  padding-left: 21px;
  font-size: 0.88rem;
}

.fee-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2be0b1;
  font-weight: 900;
}

.annual-renewal-banner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(94, 226, 189, 0.32);
  border-radius: 8px;
  background: #081d33;
}

.annual-renewal-banner > div {
  display: grid;
  gap: 4px;
}

.annual-renewal-banner span {
  color: #5ee2bd;
  font-size: 0.74rem;
  font-weight: 850;
}

.annual-renewal-banner strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.annual-renewal-banner small {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.fee-scope-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.fee-scope-note strong {
  color: #fff;
  white-space: nowrap;
}

.fee-scope-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.85rem;
  line-height: 1.65;
}

.package-rate-row td {
  background: #e9f7f3;
  color: var(--navy);
}

.package-rate-row td:first-child {
  border-left: 3px solid var(--teal);
}

.package-rate-row strong {
  color: var(--teal);
}

.package-rate-row small {
  color: #667587;
}

@media (max-width: 980px) {
  .annual-fees-intro,
  .annual-renewal-banner {
    grid-template-columns: 1fr;
  }

  .fee-timeline {
    grid-template-columns: 1fr;
  }

  .fee-stage {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .fee-stage:last-child {
    border-bottom: 0;
  }

  .annual-renewal-banner .btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .annual-fees-intro {
    margin-bottom: 32px;
  }

  .fee-stage,
  .annual-renewal-banner {
    padding: 26px 22px;
  }

  .fee-stage-price {
    font-size: 2.75rem;
  }

  .fee-scope-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .fee-scope-note strong {
    white-space: normal;
  }
}

/* Sdn. Bhd. registration conversion improvements */
#fee-timeline,
#company-details {
  scroll-margin-top: 96px;
}

.hero-fee-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-fee-summary > div {
  min-width: 0;
  padding: 19px 22px 19px 0;
}

.hero-fee-summary > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-fee-summary span,
.hero-fee-summary strong,
.hero-fee-summary small {
  display: block;
}

.hero-fee-summary span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  font-weight: 800;
}

.hero-fee-summary strong {
  margin: 5px 0 4px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-fee-summary small {
  color: #66e3c1;
  font-size: 0.78rem;
  line-height: 1.45;
}

.registration-sdnbhd-page .trust-bar .trust-value {
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  line-height: 1.25;
}

.registration-sdnbhd-page .trust-label a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(12, 159, 124, 0.35);
  text-underline-offset: 3px;
}

.quick-start-section {
  border-bottom: 1px solid #e1e8ec;
  background: #fff;
}

.quick-start-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(520px, 1.8fr) auto;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.quick-start-title h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.25;
}

.quick-start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-start-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-width: 0;
  padding: 2px 20px;
}

.quick-start-steps li + li {
  border-left: 1px solid #dce5e8;
}

.quick-start-steps li > span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.quick-start-steps strong,
.quick-start-steps small {
  display: block;
}

.quick-start-steps strong {
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.35;
}

.quick-start-steps small {
  margin-top: 5px;
  color: #687786;
  font-size: 0.75rem;
  line-height: 1.5;
}

.quick-start-link {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 850;
  white-space: nowrap;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.fit-copy {
  position: sticky;
  top: 110px;
}

.fit-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 18px 0 25px;
  color: #657586;
  line-height: 1.75;
}

.fit-list {
  border-top: 1px solid #cfdadd;
}

.fit-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #cfdadd;
}

.fit-list article > span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.fit-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.fit-list p {
  margin: 0;
  color: #657586;
  line-height: 1.65;
}

.fit-list a {
  display: inline-block;
  margin-top: 9px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
}

.mobile-wa-sticky {
  display: none;
}

@media (max-width: 1080px) {
  .quick-start-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-start-steps li:first-child {
    padding-left: 0;
  }

  .quick-start-link {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero-fee-summary {
    grid-template-columns: 1fr;
  }

  .hero-fee-summary > div {
    padding: 15px 0;
  }

  .hero-fee-summary > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .quick-start-steps {
    grid-template-columns: 1fr;
  }

  .quick-start-steps li,
  .quick-start-steps li:first-child {
    padding: 14px 0;
  }

  .quick-start-steps li + li {
    border-top: 1px solid #dce5e8;
    border-left: 0;
  }

  .fit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fit-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .registration-sdnbhd-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .registration-sdnbhd-page .hero-fee-summary strong {
    font-size: 2.2rem;
  }

  .mobile-wa-sticky {
    position: fixed;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #087b62;
    box-shadow: 0 12px 28px rgba(4, 25, 43, 0.28);
    color: #fff;
  }

  .mobile-wa-sticky span,
  .mobile-wa-sticky strong {
    color: #fff;
  }

  .mobile-wa-sticky span {
    font-size: 0.88rem;
    font-weight: 850;
  }

  .mobile-wa-sticky strong {
    font-size: 0.78rem;
    font-weight: 700;
    text-align: right;
  }
}

/* Sdn. Bhd. registration information architecture */
#registration-checklist,
#address-guide {
  scroll-margin-top: 96px;
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.prep-intro {
  position: sticky;
  top: 110px;
}

.prep-intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 18px 0 26px;
  color: #607183;
  line-height: 1.75;
}

.prep-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid #cfdadd;
  border-bottom: 1px solid #cfdadd;
}

.prep-progress strong {
  color: var(--teal);
  font-size: 3.5rem;
  line-height: 0.9;
}

.prep-progress span {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

.prep-accordion {
  border-top: 1px solid #c9d5da;
}

.prep-item {
  border-bottom: 1px solid #c9d5da;
  background: transparent;
}

.prep-item summary {
  display: grid;
  grid-template-columns: 40px 34px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 15px 4px;
  cursor: pointer;
  list-style: none;
}

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

.prep-item summary:focus-visible {
  outline: 3px solid rgba(0, 166, 126, 0.28);
  outline-offset: 4px;
}

.prep-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 166, 126, 0.28);
  border-radius: 50%;
  color: var(--teal);
}

.prep-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prep-number {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.prep-summary strong,
.prep-summary small {
  display: block;
}

.prep-summary strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.prep-summary small {
  margin-top: 5px;
  color: #718091;
  font-size: 0.77rem;
  line-height: 1.45;
}

.prep-toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

.prep-toggle::before,
.prep-toggle::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: transform 0.2s ease;
}

.prep-toggle::after {
  transform: rotate(90deg);
}

.prep-item[open] .prep-toggle::after {
  transform: rotate(0);
}

.prep-item[open] .prep-icon {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.prep-detail {
  margin: -4px 0 0 88px;
  padding: 0 42px 26px 0;
  animation: prepDetailIn 0.22s ease both;
}

.prep-detail p,
.prep-detail li {
  color: #5d6d7d;
  line-height: 1.7;
}

.prep-detail p {
  margin: 0 0 12px;
}

.prep-detail ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 19px;
}

.prep-detail li::marker {
  color: var(--teal);
}

.prep-note {
  padding: 11px 13px;
  border-left: 3px solid var(--teal);
  background: #eaf7f3;
  font-size: 0.86rem;
}

.text-link {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 850;
}

.share-examples {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.share-examples > div {
  display: grid;
  grid-template-columns: 105px minmax(100px, 1fr) 190px;
  gap: 14px;
  align-items: center;
}

.share-examples b,
.share-examples small {
  color: #607183;
  font-size: 0.75rem;
}

.share-examples small {
  line-height: 1.4;
}

.share-bar {
  position: relative;
  display: block;
  overflow: hidden;
  height: 8px;
  border-radius: 4px;
  background: #dce6e8;
}

.share-bar i {
  display: block;
  height: 100%;
  background: var(--teal);
}

.share-bar.split {
  background: #8ba5b8;
}

.share-bar.multi {
  background: linear-gradient(to right, #d9aa55 0 20%, #8ba5b8 20% 100%);
}

@keyframes prepDetailIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.address-guide {
  padding: clamp(72px, 8vw, 112px) 0;
  background: #081f38;
  color: #fff;
}

.address-guide-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  margin-bottom: 42px;
}

.address-guide-head h2 {
  margin: 8px 0 0;
}

.address-guide-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.address-comparison {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.address-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.address-row:last-child {
  border-bottom: 0;
}

.address-row > * {
  min-width: 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.address-row > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.address-row > :first-child,
.address-row-head strong {
  color: #fff;
  font-weight: 800;
}

.address-row-head {
  background: rgba(255, 255, 255, 0.055);
}

.address-row-head small {
  color: #66e3c1;
  font-size: 0.72rem;
}

.status-yes {
  color: #66e3c1;
}

.address-foot {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
}

.address-included span,
.address-included strong {
  display: block;
}

.address-included span {
  color: #66e3c1;
  font-size: 0.74rem;
  font-weight: 850;
}

.address-included strong {
  margin-top: 5px;
  color: #fff;
  font-size: 1.35rem;
}

.address-included p,
.address-options p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  line-height: 1.65;
}

.address-options h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.incorp-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.incorp-process-list::before {
  position: absolute;
  top: 18px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #bdcdd2;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: processLineGrow 0.8s 0.2s ease forwards;
}

.incorp-process-list li {
  position: relative;
  padding: 0 19px;
  opacity: 0;
  transform: translateY(14px);
  animation: processStepIn 0.42s ease forwards;
}

.incorp-process-list li:nth-child(2) { animation-delay: 0.08s; }
.incorp-process-list li:nth-child(3) { animation-delay: 0.16s; }
.incorp-process-list li:nth-child(4) { animation-delay: 0.24s; }
.incorp-process-list li:nth-child(5) { animation-delay: 0.32s; }

.incorp-process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 25px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
}

.incorp-process-list h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
}

.incorp-process-list p {
  margin: 0;
  color: #657586;
  font-size: 0.84rem;
  line-height: 1.65;
}

.js .process-reveal::before,
.js .process-reveal li {
  animation: none;
}

.js .process-reveal::before {
  transform: scaleX(0);
}

.js .process-reveal li {
  opacity: 0;
  transform: translateY(14px);
}

.js .process-reveal.is-visible::before {
  animation: processLineGrow 0.8s 0.2s ease forwards;
}

.js .process-reveal.is-visible li {
  animation: processStepIn 0.42s ease forwards;
}

.js .process-reveal.is-visible li:nth-child(2) { animation-delay: 0.08s; }
.js .process-reveal.is-visible li:nth-child(3) { animation-delay: 0.16s; }
.js .process-reveal.is-visible li:nth-child(4) { animation-delay: 0.24s; }
.js .process-reveal.is-visible li:nth-child(5) { animation-delay: 0.32s; }

.documents-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.documents-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #657586;
  line-height: 1.75;
}

.incorp-doc-list {
  border-top: 1px solid #c9d5da;
}

.incorp-doc-list article {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid #c9d5da;
}

.incorp-doc-list article > span {
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 900;
}

.incorp-doc-list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.incorp-doc-list p {
  margin: 0;
  color: #657586;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .prep-layout,
  .address-guide-head,
  .documents-layout {
    grid-template-columns: 1fr;
  }

  .prep-intro {
    position: static;
  }

  .address-foot {
    grid-template-columns: 1fr 1fr;
  }

  .address-foot .btn {
    justify-self: start;
  }

  .incorp-process-list {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .incorp-process-list::before {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 17px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
    animation-name: processLineGrowY;
  }

  .js .process-reveal::before {
    transform: scaleY(0);
  }

  .js .process-reveal.is-visible::before {
    animation-name: processLineGrowY;
  }

  .incorp-process-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 0 0 28px;
  }

  .incorp-process-list li > span {
    margin: 0;
  }
}

@media (max-width: 700px) {
  .prep-item summary {
    grid-template-columns: 36px 28px minmax(0, 1fr) 20px;
    gap: 9px;
    min-height: 82px;
  }

  .prep-icon {
    width: 36px;
    height: 36px;
  }

  .prep-detail {
    margin-left: 73px;
    padding-right: 8px;
  }

  .share-examples > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .address-row-head {
    display: none;
  }

  .address-row {
    grid-template-columns: 1fr;
    padding: 17px 0;
  }

  .address-row > * {
    padding: 5px 0;
  }

  .address-row > * + * {
    border-left: 0;
  }

  .address-row > :first-child {
    margin-bottom: 6px;
    color: #66e3c1;
    font-size: 0.77rem;
  }

  .address-row [data-label] {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .address-row [data-label]::before {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    content: attr(data-label);
  }

  .address-foot {
    grid-template-columns: 1fr;
  }

  .incorp-doc-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prep-detail,
  .prep-toggle::before,
  .prep-toggle::after,
  .incorp-process-list::before,
  .incorp-process-list li,
  .js .process-reveal::before,
  .js .process-reveal li,
  .js .process-reveal.is-visible::before,
  .js .process-reveal.is-visible li {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* English Sdn. Bhd. sales page uses a streamlined version of the registration components. */
.incorp-hero {
  padding: clamp(72px, 9vw, 118px) 0;
  color: #fff;
  background: #0a2342;
}
.incorp-hero-grid,
.incorp-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}
.incorp-hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.08;
}
.incorp-hero p { max-width: 760px; color: #dce8f4; font-size: 1.08rem; }
.incorp-hero .hero-note { margin-top: 20px; color: #b9cadb; font-size: 0.92rem; }
.incorp-hero-price,
.incorp-price-panel {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #b9ddd2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(2, 18, 38, 0.22);
}
.incorp-hero-price span,
.incorp-price-panel span { color: #087559; font-weight: 800; }
.incorp-hero-price strong,
.incorp-price-panel strong { color: #0a2342; font-size: clamp(3rem, 4.5vw, 4rem); line-height: 1; }
.incorp-hero-price b,
.incorp-price-panel b { padding: 12px 14px; color: #0a2342; background: #eaf7f3; border-left: 3px solid #087559; }
.incorp-hero-price small,
.incorp-price-panel p { color: #526273; line-height: 1.65; }
.incorp-trust { padding: 26px 0; border-bottom: 1px solid #dbe4eb; background: #fff; }
.incorp-trust .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.incorp-trust article { padding: 8px 24px; border-right: 1px solid #dbe4eb; }
.incorp-trust article:last-child { border-right: 0; }
.incorp-trust strong,
.incorp-trust span { display: block; }
.incorp-trust strong { margin-bottom: 7px; color: #0a2342; font-size: 1.02rem; }
.incorp-trust span { color: #526273; font-size: 0.9rem; line-height: 1.55; }
.incorp-offer-grid { margin-bottom: 42px; }
.incorp-inclusions,
.entity-fit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.incorp-inclusions article,
.entity-fit-grid article {
  padding: 24px;
  border: 1px solid #dbe4eb;
  border-radius: 8px;
  background: #fff;
}
.incorp-inclusions h3,
.entity-fit-grid h3 { margin: 0 0 10px; color: #0a2342; font-size: 1.05rem; }
.incorp-inclusions p,
.entity-fit-grid p { margin: 0; color: #526273; line-height: 1.65; }
.entity-fit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.entity-fit-grid article > span { display: block; margin-bottom: 20px; color: #087559; font-weight: 900; }
.incorp-doc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.fee-timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fee-stage { display: grid; gap: 12px; padding: 28px; border: 1px solid #d6e0e8; border-radius: 8px; background: #fff; }
.fee-stage > span { color: #087559; font-weight: 800; }
.fee-stage > strong { color: #0a2342; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.fee-stage > p { margin: 0; color: #526273; line-height: 1.65; }
.fee-stage-featured { border-color: #85c8b4; background: #eaf7f3; }
.pricing-note { margin-top: 22px; padding: 22px 26px; border-left: 3px solid #087559; background: #fff; }
.pricing-note h3 { margin: 0 0 6px; }
.pricing-note p { margin: 0; color: #526273; }

@media (max-width: 980px) {
  .incorp-hero-grid,
  .incorp-offer-grid { grid-template-columns: 1fr; }
  .incorp-trust .container,
  .incorp-inclusions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .incorp-trust article { border-right: 0; border-bottom: 1px solid #dbe4eb; }
  .entity-fit-grid,
  .fee-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .incorp-hero { padding: 54px 0 64px; }
  .incorp-hero h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  .incorp-trust .container,
  .incorp-inclusions,
  .entity-fit-grid,
  .document-checklist,
  .incorp-doc-list,
  .fee-timeline { grid-template-columns: 1fr; }
  .incorp-trust article { padding: 16px 0; }
}
