:root {
  --ink: #111317;
  --ink-2: #1a1e24;
  --muted: #68707b;
  --line: #e7e9ec;
  --soft: #f6f7f8;
  --white: #ffffff;
  --orange: #ff8c1a;
  --orange-dark: #e97500;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 8px; }

.topbar { background: #08090a; color: #dfe2e6; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: var(--orange); }

.nav-wrap { background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(17,19,23,.07); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px); }
.nav-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 330px; max-width: 44vw; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: 15px; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: .2s ease; }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { background: var(--orange); color: #111; padding: 11px 18px; border-radius: 8px; }
.nav-cta:hover { background: #ff9c3a; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 6px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #111; margin: 5px 0; }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0a0c0f 0%, #15191f 100%); color: white; padding: 95px 0 100px; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent); }
.hero-accent { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .22; }
.hero-accent-one { width: 420px; height: 420px; background: var(--orange); right: -180px; top: -180px; }
.hero-accent-two { width: 180px; height: 180px; border: 1px solid var(--orange); left: 48%; bottom: -100px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; gap: 76px; align-items: center; }
.eyebrow { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; margin-bottom: 16px; }
.hero .eyebrow { color: #ff9a35; }
h1, h2, h3 { font-family: Manrope, Inter, sans-serif; margin-top: 0; }
h1 { font-size: clamp(44px, 5.5vw, 74px); line-height: 1.02; letter-spacing: -.045em; max-width: 780px; margin-bottom: 24px; }
.hero-lead { max-width: 700px; font-size: 19px; color: #c8ced6; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 9px; font-weight: 700; transition: .2s ease; }
.btn-primary { background: var(--orange); color: #111; }
.btn-primary:hover { transform: translateY(-1px); background: #ff9e40; }
.btn-secondary { border: 1px solid #424851; color: #fff; background: rgba(255,255,255,.03); }
.btn-secondary:hover { border-color: #666d77; background: rgba(255,255,255,.06); }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust strong { font-size: 15px; }
.hero-trust span { color: #969da7; font-size: 13px; }

.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 28px 80px rgba(0,0,0,.28); border-radius: 18px; padding: 26px; backdrop-filter: blur(10px); }
.hero-card-head { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #d8dde4; margin-bottom: 22px; }
.status-dot { width: 9px; height: 9px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,140,26,.12); }
.payroll-visual { background: #fff; color: #1b1e23; border-radius: 12px; padding: 10px 18px 16px; }
.payroll-row, .payroll-total { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; font-size: 14px; }
.payroll-row span { color: #737a84; }
.payroll-row strong { font-size: 13px; color: #3e4650; }
.divider { height: 1px; background: #eceef0; margin: 4px 0; }
.payroll-total { padding-top: 17px; align-items: center; }
.payroll-total strong { color: #0e1115; background: #fff1df; border: 1px solid #ffd1a1; padding: 6px 10px; border-radius: 999px; font-size: 12px; }
.hero-card > p { margin: 20px 2px 0; color: #aeb5bf; font-size: 14px; }

.section { padding: 96px 0; }
.section-light { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 18px; }
.section-heading p, .about-copy p, .contact p { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; min-height: 250px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(20,24,30,.08); border-color: #dedfe2; }
.service-card .icon { width: 43px; height: 43px; border-radius: 11px; display: grid; place-items: center; background: #fff3e5; color: var(--orange-dark); font-weight: 800; font-size: 20px; margin-bottom: 25px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin: 0; font-size: 15px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about-panel { background: var(--ink); color: #fff; border-radius: 18px; padding: 34px; position: relative; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.about-panel::after { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(255,140,26,.42); border-radius: 50%; right: -120px; bottom: -120px; }
.panel-line { width: 54px; height: 4px; background: var(--orange); margin-bottom: 30px; }
.panel-stat { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 4px; }
.panel-stat:last-child { border-bottom: 0; }
.panel-stat span { color: #ff9c3d; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.panel-stat strong { font-family: Manrope, sans-serif; font-size: 20px; max-width: 290px; }
.about-copy p { max-width: 690px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: #12161b; font-weight: 800; margin-top: 10px; }
.text-link span { color: var(--orange-dark); font-size: 20px; }

.section-dark { background: #0a0c0f; color: #fff; }
.eyebrow-dark { color: #ff9c3d; }
.why-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; }
.why-grid h2 { max-width: 520px; }
.why-list { border-top: 1px solid #2b3037; }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid #2b3037; }
.why-item > span { color: var(--orange); font-weight: 800; }
.why-item h3 { margin: 0 0 5px; font-size: 20px; }
.why-item p { margin: 0; color: #9da5af; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 50px rgba(20,24,30,.06); }
.contact-method { display: grid; grid-template-columns: 90px 1fr 30px; align-items: center; gap: 16px; padding: 26px 28px; border-bottom: 1px solid var(--line); background: #fff; }
a.contact-method:hover { background: #fafafa; }
.contact-method:last-child { border-bottom: 0; }
.contact-label { color: #848b94; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.contact-method strong { font-family: Manrope, sans-serif; font-size: 18px; }
.arrow { color: var(--orange-dark); font-size: 22px; }
.address-item { grid-template-columns: 90px 1fr; }

.site-footer { background: #08090a; color: #c0c5cc; padding: 46px 0 34px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-logo { width: 300px; filter: none; }
.footer-contact { display: flex; gap: 24px; font-size: 14px; }
.footer-contact a:hover { color: var(--orange); }
.footer-divider { height: 1px; background: #262a30; margin: 32px auto 24px; }
.footer-bottom { display: grid; gap: 10px; font-size: 12px; line-height: 1.6; color: #8f969f; }
.legal-main { color: #aab0b8; }

@media (max-width: 960px) {
  .topbar-inner > span { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .brand { width: 280px; max-width: 60vw; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: 92px; background: white; border-top: 1px solid var(--line); box-shadow: 0 18px 40px rgba(0,0,0,.09); padding: 20px; display: none; flex-direction: column; align-items: stretch; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 8px; }
  .nav-cta { text-align: center; }
  .hero-grid, .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 72px 0; }
  .hero-card { max-width: 620px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-panel { min-height: auto; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .topbar-links { gap: 10px; flex-direction: column; align-items: flex-end; padding: 7px 0; }
  .topbar-inner { min-height: 58px; }
  .nav-inner { min-height: 78px; }
  .nav-links { top: 78px; }
  .brand { width: 230px; max-width: 72vw; }
  .hero { padding: 58px 0 62px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .hero-trust { grid-template-columns: 1fr; gap: 14px; }
  .section { padding: 70px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .contact-method { grid-template-columns: 1fr auto; gap: 6px 14px; }
  .contact-label { grid-column: 1 / -1; }
  .address-item { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-logo { width: 260px; }
  .footer-contact { flex-direction: column; gap: 8px; }
}

/* Enhanced sticky navigation, creative wordmark and motion */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(10, 12, 15, .06);
}
.nav-wrap { position: relative; top: auto; z-index: auto; }

.brand-wordmark {
  width: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 245px;
}
.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #111317 0%, #242932 100%);
  box-shadow: 0 10px 24px rgba(17,19,23,.16);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .95;
}
.brand-mark i {
  position: absolute;
  left: 11px;
  height: 4px;
  border-radius: 6px;
  background: var(--orange);
  transform-origin: left center;
}
.brand-mark i:nth-child(1) { top: 12px; width: 24px; }
.brand-mark i:nth-child(2) { top: 21px; width: 18px; }
.brand-mark i:nth-child(3) { top: 30px; width: 12px; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  letter-spacing: -.035em;
  color: #111317;
}
.brand-type > span {
  margin-top: 6px;
  color: var(--orange-dark);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand-wordmark:hover .brand-mark { transform: rotate(-2deg) translateY(-1px); }
.brand-mark { transition: transform .25s ease, box-shadow .25s ease; }

.site-header.is-scrolled .topbar { max-height: 0; opacity: 0; overflow: hidden; }
.topbar { max-height: 60px; transition: max-height .3s ease, opacity .25s ease; }
.site-header.is-scrolled .nav-inner { min-height: 72px; }
.nav-inner { transition: min-height .3s ease; }
.site-header.is-scrolled .nav-wrap { box-shadow: 0 10px 28px rgba(10,12,15,.09); }

.hero { isolation: isolate; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 68% 36%, rgba(255,140,26,.12), transparent 26%);
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255,140,26,.22);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 560px; height: 560px; right: -170px; top: -250px; animation: orbitSpin 24s linear infinite; }
.orbit-two { width: 310px; height: 310px; right: 14%; bottom: -220px; border-style: dashed; animation: orbitSpinReverse 18s linear infinite; }
.hero-card { position: relative; overflow: hidden; animation: cardFloat 5.5s ease-in-out infinite; }
.hero-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 160%;
  top: -30%;
  left: -140px;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  animation: cardSheen 6s ease-in-out infinite 1.8s;
  pointer-events: none;
}
.status-dot { animation: statusPulse 2.2s ease-out infinite; }
.hero-animate { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-animate-delay { animation-delay: .16s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.service-card.reveal:nth-child(2) { transition-delay: .06s; }
.service-card.reveal:nth-child(3) { transition-delay: .12s; }
.service-card.reveal:nth-child(4) { transition-delay: .06s; }
.service-card.reveal:nth-child(5) { transition-delay: .12s; }
.service-card.reveal:nth-child(6) { transition-delay: .18s; }

@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes cardSheen { 0%, 58% { left: -140px; } 78%, 100% { left: 125%; } }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 0 rgba(255,140,26,.38); } 70%,100% { box-shadow: 0 0 0 10px rgba(255,140,26,0); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { to { transform: rotate(-360deg); } }

@media (max-width: 960px) {
  .brand-wordmark { width: auto; max-width: none; min-width: 0; }
  .brand-type strong { font-size: 18px; }
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .site-header.is-scrolled .nav-links { top: 72px; }
}
@media (max-width: 640px) {
  .brand-type > span { font-size: 9px; letter-spacing: .12em; }
  .brand-wordmark { gap: 10px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-mark i { left: 9px; }
  .brand-mark i:nth-child(1) { top: 10px; }
  .brand-mark i:nth-child(2) { top: 18px; }
  .brand-mark i:nth-child(3) { top: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Preserve the supplied original logo in the sticky header */
.original-brand {
  width: 310px;
  max-width: 42vw;
  display: block;
}
.original-brand img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 960px) {
  .original-brand { width: 270px; max-width: 58vw; }
}
@media (max-width: 640px) {
  .original-brand { width: 220px; max-width: 68vw; }
}

/* Requested refinements: keep contact bar visible, smaller original logo, richer hero motion, lighter footer */
.site-header.is-scrolled .topbar {
  max-height: 60px;
  opacity: 1;
  overflow: visible;
}
.topbar {
  max-height: 60px;
  opacity: 1;
}

/* Keep the supplied original logo unchanged, only display it at a smaller size. */
.original-brand {
  width: 245px;
  max-width: 34vw;
}
.site-header.is-scrolled .original-brand { width: 225px; }
.original-brand { transition: width .3s ease; }

/* Add more life to the home-section payroll visual without altering branding. */
.payroll-visual {
  position: relative;
  transform-origin: center;
  animation: payrollVisualDrift 4.8s ease-in-out infinite;
}
.payroll-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,140,26,.08) 45%, rgba(255,140,26,.16) 50%, rgba(255,140,26,.08) 55%, transparent 75%);
  background-size: 220% 100%;
  animation: payrollSweep 4.2s ease-in-out infinite;
}
.payroll-row {
  position: relative;
  animation: payrollRowPulse 4.8s ease-in-out infinite;
}
.payroll-row:nth-child(2) { animation-delay: .15s; }
.payroll-row:nth-child(3) { animation-delay: .30s; }
.payroll-row:nth-child(4) { animation-delay: .45s; }
.payroll-total strong { animation: completeGlow 2.8s ease-in-out infinite; }

@keyframes payrollVisualDrift {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-5px) rotateX(1.2deg); }
}
@keyframes payrollSweep {
  0%, 25% { background-position: 180% 0; opacity: 0; }
  45% { opacity: 1; }
  70%, 100% { background-position: -40% 0; opacity: 0; }
}
@keyframes payrollRowPulse {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(0); }
  50% { transform: translateX(3px); }
  56% { transform: translateX(0); }
}
@keyframes completeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255,140,26,0); }
  50% { box-shadow: 0 0 0 6px rgba(255,140,26,.10); }
}

.site-footer {
  background: #eef0f2;
  color: #39414a;
  border-top: 1px solid #dfe3e7;
}
.footer-contact a { color: #1d2228; }
.footer-divider { background: #d4d9de; }
.footer-bottom { color: #69727d; }
.legal-main { color: #414952; }

@media (max-width: 960px) {
  .original-brand { width: 215px; max-width: 46vw; }
  .site-header.is-scrolled .original-brand { width: 200px; }
  .site-header.is-scrolled .nav-links { top: 72px; }
}
@media (max-width: 640px) {
  .topbar { max-height: none; }
  .site-header.is-scrolled .topbar { max-height: none; }
  .original-brand { width: 175px; max-width: 56vw; }
  .site-header.is-scrolled .original-brand { width: 165px; }
  .footer-logo { width: 230px; }
}


/* Orange contact icons */
.contact-icon { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.topbar-contact { display: inline-flex; align-items: center; gap: 8px; }
.topbar-contact .contact-icon { width: 15px; height: 15px; }
.icon-label { display: flex; align-items: center; justify-content: flex-start; }
.icon-label .contact-icon { width: 23px; height: 23px; }
@media (max-width: 640px) {
  .topbar-contact { gap: 7px; }
  .topbar-contact .contact-icon { width: 14px; height: 14px; }
  .icon-label { grid-column: auto; }
}

/* Compliance section */
.compliance-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border-top: 1px solid #f2e5d8;
  border-bottom: 1px solid #f2e5d8;
}
.compliance-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,140,26,.15);
  border-radius: 50%;
  right: -150px;
  top: -170px;
}
.compliance-wrap { position: relative; z-index: 1; }
.compliance-copy { max-width: 760px; margin-bottom: 32px; }
.compliance-copy h2 { margin-bottom: 14px; }
.compliance-copy p { max-width: 680px; }
.compliance-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px;
  background: #fff;
  border: 1px solid #eceff2;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(22,26,31,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.compliance-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255,140,26,.38);
  box-shadow: 0 18px 42px rgba(22,26,31,.10);
}
.compliance-emblem {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,140,26,.10);
}
.compliance-emblem svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compliance-badge strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #14171b;
  margin-bottom: 7px;
}
.compliance-badge span {
  display: block;
  color: #4d5660;
  line-height: 1.45;
}
.compliance-badge small {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .02em;
}
.compliance-note {
  margin: 18px 0 0;
  color: #7a838d;
  font-size: 12px;
}
@media (max-width: 760px) {
  .compliance-badges { grid-template-columns: 1fr; }
  .compliance-badge { min-height: 0; }
}

/* Professional compliance & registrations panel */
.compliance-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,140,26,.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-top: 1px solid #eceff2;
  border-bottom: 1px solid #eceff2;
}
.compliance-section::before { display: none; }
.compliance-shell {
  position: relative;
  padding: 46px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e7eaee;
  box-shadow: 0 22px 60px rgba(16,22,28,.08);
  overflow: hidden;
}
.compliance-shell::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  border: 36px solid rgba(255,140,26,.06);
  pointer-events: none;
}
.compliance-intro { max-width: 820px; margin-bottom: 30px; position: relative; z-index: 1; }
.compliance-intro h2 { margin: 0 0 14px; max-width: 720px; }
.compliance-intro > p { max-width: 760px; margin-bottom: 22px; }
.compliance-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.compliance-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #343a40;
}
.compliance-proof svg { width: 17px; height: 17px; fill: none; stroke: var(--orange); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.compliance-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; position: relative; z-index: 1; }
.reg-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #e6e9ed;
  background: linear-gradient(145deg,#fff 0%,#fbfcfd 100%);
  box-shadow: 0 12px 30px rgba(16,22,28,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.reg-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(16,22,28,.10); border-color: rgba(255,140,26,.45); }
.reg-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid #edf0f2; }
.org-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 54px;
  padding: 0 15px;
  border-radius: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  background: #f4f6f8;
  color: #13171b;
}
.org-wordmark-hmrc { font-size: 25px; border-left: 4px solid var(--orange); }
.org-wordmark-ico { font-size: 34px; text-transform: lowercase; border-left: 4px solid var(--orange); }
.reg-status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: #343a40; text-transform: uppercase; letter-spacing: .08em; }
.reg-status i { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,140,26,.12); animation: regPulse 2.4s ease-in-out infinite; }
.reg-card-body h3 { margin: 0 0 10px; font-size: 19px; }
.reg-card-body p { margin: 0 0 22px; color: #66707a; font-size: 14px; line-height: 1.7; }
.reg-number { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-radius: 12px; background: #f7f8fa; border: 1px solid #eceff2; }
.reg-number span { font-size: 12px; color: #7b838c; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.reg-number strong { color: var(--orange); font-size: 16px; letter-spacing: .01em; }
.compliance-note { position: relative; z-index: 1; margin: 20px 0 0; padding-top: 16px; border-top: 1px solid #edf0f2; color: #8a9198; font-size: 11px; line-height: 1.65; }
@keyframes regPulse { 0%,100%{box-shadow:0 0 0 4px rgba(255,140,26,.10)} 50%{box-shadow:0 0 0 8px rgba(255,140,26,.03)} }
@media (max-width: 820px) {
  .compliance-shell { padding: 32px 24px; }
  .compliance-cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .reg-card { padding: 20px; min-height: 0; }
  .reg-card-top { align-items: flex-start; }
  .reg-number { align-items: flex-start; flex-direction: column; gap: 5px; }
}
